Skip to content

Commit 8bb775e

Browse files
committed
release 4.1.3
1 parent 4c9c607 commit 8bb775e

File tree

4 files changed

+99
-2
lines changed

4 files changed

+99
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,6 @@ hs_err_pid*
3131
target/
3232
test-output/
3333
*.iml
34+
35+
# nexus
36+
deploycmd.txt

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [4.1.3](https://github.com/extent-framework/extentreports-java/compare/v4.1.2...v4.1.3)
2+
#### Improvements
3+
* [#119] `ExtentSparkReporter` now displays thumbnails as default
4+
5+
#### Fixes
6+
* [#123] Prevent class cast exception in `ExtentHtmlReporterConfiguration`
7+
* [#124] Fixes issue with `ExtentHtmlReporter` throwing freemarker errors due to image path being empty
8+
9+
#### Deprecation
10+
* ExtentHtmlReporter has been deprecated. ExtentSparkReporter is the default reporter starting version 4 and it now supports SPA-style view by default.
11+
112
## [4.1.2](https://github.com/extent-framework/extentreports-java/compare/v4.1.1...v4.1.2)
213
#### Improvements
314
* [#114] Tags tab lost a display of a full name of test

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.2</version>
8+
<version>4.1.3</version>
99

1010
<name>extentreports</name>
1111
<url>www.extentreports.com</url>

pom.xml

Lines changed: 84 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.2</version>
8+
<version>4.1.3</version>
99

1010
<name>extentreports</name>
1111
<url>www.extentreports.com</url>
@@ -114,9 +114,92 @@
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>
131+
<plugin>
132+
<groupId>org.jacoco</groupId>
133+
<artifactId>jacoco-maven-plugin</artifactId>
134+
<version>0.7.9</version>
135+
<executions>
136+
<execution>
137+
<goals>
138+
<goal>prepare-agent</goal>
139+
</goals>
140+
</execution>
141+
<execution>
142+
<id>report</id>
143+
<phase>test</phase>
144+
<goals>
145+
<goal>report</goal>
146+
</goals>
147+
</execution>
148+
</executions>
149+
</plugin>
117150
</plugins>
118151
</build>
119152

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+
120203
<distributionManagement>
121204
<snapshotRepository>
122205
<id>ossrh</id>

0 commit comments

Comments
 (0)