File tree Expand file tree Collapse file tree 4 files changed +74
-12
lines changed Expand file tree Collapse file tree 4 files changed +74
-12
lines changed Original file line number Diff line number Diff line change 1+ ## [ 4.1.6] ( https://github.com/extent-framework/extentreports-java/compare/v4.1.5...v4.1.6 )
2+ #### Fixes
3+ * [ #149 ] Skipped count is not displaying in authors tag and category tag
4+ * [ #155 ] Fixes Cmd+C key listener
5+ * [ #159 ] Fixes ConcurrentModificationException
6+ * [ #167 ] Clicking Extent Logo on top-left navigating to 404
7+
18## [ 4.1.5] ( https://github.com/extent-framework/extentreports-java/compare/v4.1.4...v4.1.5 )
29#### Fixes
310* [ #139 ] BDD: Feature must not be eligible to increment counts for TestAttributeContext, part of fix of [ cucumber4-adapter #50 ] ( https://github.com/extent-framework/extentreports-cucumber4-adapter/issues/50 )
Original file line number Diff line number Diff line change 55[ ![ Build Status] ( https://travis-ci.com/extent-framework/extentreports-java.svg?branch=master )] ( https://travis-ci.com/extent-framework/extentreports-java )
66[ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/dbdc8c04b0f84489a738f064f28a82fa )] ( https://www.codacy.com/app/anshooarora/extentreports?utm_source=github.com& ; utm_medium=referral& ; utm_content=extent-framework/extentreports& ; utm_campaign=Badge_Grade )
77
8- This version is Java8 only.
9-
10- [ Klov] ( https://github.com/extent-framework/klov-server ) report server 0.2+ is supported with version 4.0.0+.
11-
12- ### Documentation
8+ #### Documentation
139
1410View [ extentreports.com] ( http://extentreports.com/docs/versions/4/java/ ) for complete documentation.
1511
16- ### Samples
17-
18- * [ ExtentSparkReporter] ( http://extentreports.com/samples/spark/index.html )
19- * [ ExtentHtmlReporter] ( http://extentreports.com/samples/html/index.html )
20-
2112### License
2213
2314Apache-2.0
Original file line number Diff line number Diff line change 55
66 <groupId >com.aventstack</groupId >
77 <artifactId >extentreports</artifactId >
8- <version >4.1.5 </version >
8+ <version >4.1.6 </version >
99
1010 <name >extentreports</name >
1111 <url >www.extentreports.com</url >
Original file line number Diff line number Diff line change 55
66 <groupId >com.aventstack</groupId >
77 <artifactId >extentreports</artifactId >
8- <version >4.1.6-SNAPSHOT </version >
8+ <version >4.1.6</version >
99
1010 <name >extentreports</name >
1111 <url >www.extentreports.com</url >
114114 <artifactId >maven-resources-plugin</artifactId >
115115 <version >2.7</version >
116116 </plugin >
117+ <plugin >
118+ <groupId >org.apache.maven.plugins</groupId >
119+ <artifactId >maven-gpg-plugin</artifactId >
120+ <version >1.6</version >
121+ <executions >
122+ <execution >
123+ <id >sign-artifacts</id >
124+ <phase >verify</phase >
125+ <goals >
126+ <goal >sign</goal >
127+ </goals >
128+ </execution >
129+ </executions >
130+ </plugin >
117131 <plugin >
118132 <groupId >org.jacoco</groupId >
119133 <artifactId >jacoco-maven-plugin</artifactId >
136150 </plugins >
137151 </build >
138152
153+ <profiles >
154+ <profile >
155+ <id >release-sign-artifacts</id >
156+ <activation >
157+ <property >
158+ <name >performRelease</name >
159+ <value >true</value >
160+ </property >
161+ </activation >
162+ <properties >
163+ <gpg .keyname>41414BBD</gpg .keyname>
164+ <!-- GPG Key ID to use for signing -->
165+ <release .username>anshooarora</release .username>
166+ <!-- username for our svn repository -->
167+ </properties >
168+ <build >
169+ <resources >
170+ </resources >
171+ <plugins >
172+ <plugin >
173+ <groupId >org.apache.maven.plugins</groupId >
174+ <artifactId >maven-source-plugin</artifactId >
175+ <version >2.3</version >
176+ <executions >
177+ <execution >
178+ <id >attach-sources</id >
179+ <goals >
180+ <goal >jar</goal >
181+ </goals >
182+ </execution >
183+ </executions >
184+ </plugin >
185+ <plugin >
186+ <groupId >org.apache.maven.plugins</groupId >
187+ <artifactId >maven-javadoc-plugin</artifactId >
188+ <version >2.3</version >
189+ <executions >
190+ <execution >
191+ <id >attach-javadocs</id >
192+ <goals >
193+ <goal >jar</goal >
194+ </goals >
195+ </execution >
196+ </executions >
197+ </plugin >
198+ </plugins >
199+ </build >
200+ </profile >
201+ </profiles >
202+
139203 <distributionManagement >
140204 <snapshotRepository >
141205 <id >ossrh</id >
You can’t perform that action at this time.
0 commit comments