Skip to content

Commit 4df3210

Browse files
committed
prepare release 4.1.6
1 parent 0fb81c1 commit 4df3210

File tree

4 files changed

+74
-12
lines changed

4 files changed

+74
-12
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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)

Readme.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,10 @@
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

1410
View [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

2314
Apache-2.0

pom-nexus.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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>

pom.xml

Lines changed: 65 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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>
@@ -114,6 +114,20 @@
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>
@@ -136,6 +150,56 @@
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>

0 commit comments

Comments
 (0)