Skip to content

Commit

Permalink
release 4.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
anshooarora committed Feb 8, 2020
1 parent 4c9c607 commit 8bb775e
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,6 @@ hs_err_pid*
target/
test-output/
*.iml

# nexus
deploycmd.txt
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [4.1.3](https://github.com/extent-framework/extentreports-java/compare/v4.1.2...v4.1.3)
#### Improvements
* [#119] `ExtentSparkReporter` now displays thumbnails as default

#### Fixes
* [#123] Prevent class cast exception in `ExtentHtmlReporterConfiguration`
* [#124] Fixes issue with `ExtentHtmlReporter` throwing freemarker errors due to image path being empty

#### Deprecation
* ExtentHtmlReporter has been deprecated. ExtentSparkReporter is the default reporter starting version 4 and it now supports SPA-style view by default.

## [4.1.2](https://github.com/extent-framework/extentreports-java/compare/v4.1.1...v4.1.2)
#### Improvements
* [#114] Tags tab lost a display of a full name of test
Expand Down
2 changes: 1 addition & 1 deletion pom-nexus.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.aventstack</groupId>
<artifactId>extentreports</artifactId>
<version>4.1.2</version>
<version>4.1.3</version>

<name>extentreports</name>
<url>www.extentreports.com</url>
Expand Down
85 changes: 84 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.aventstack</groupId>
<artifactId>extentreports</artifactId>
<version>4.1.2</version>
<version>4.1.3</version>

<name>extentreports</name>
<url>www.extentreports.com</url>
Expand Down Expand Up @@ -114,9 +114,92 @@
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.9</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<properties>
<gpg.keyname>41414BBD</gpg.keyname>
<!-- GPG Key ID to use for signing -->
<release.username>anshooarora</release.username>
<!-- username for our svn repository -->
</properties>
<build>
<resources>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
Expand Down

0 comments on commit 8bb775e

Please sign in to comment.