Skip to content

Commit

Permalink
prepare release 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
anshooarora committed Apr 15, 2020
1 parent b00ceac commit 2d16b97
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 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-testng-adapter</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<name>extentreports-testng-adapter</name>
<url>http://extentreports.com</url>
<description>TestNG adapter for Extent Framework</description>
Expand Down Expand Up @@ -42,7 +42,7 @@
<dependency>
<groupId>com.aventstack</groupId>
<artifactId>extentreports</artifactId>
<version>4.1.2</version>
<version>4.1.5</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
Expand Down
82 changes: 80 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.aventstack</groupId>
<artifactId>extentreports-testng-adapter</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<name>extentreports-testng-adapter</name>
<url>http://extentreports.com</url>
<description>TestNG adapter for Extent Framework</description>
Expand Down Expand Up @@ -42,7 +42,7 @@
<dependency>
<groupId>com.aventstack</groupId>
<artifactId>extentreports</artifactId>
<version>4.1.2</version>
<version>4.1.5</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
Expand Down Expand Up @@ -72,9 +72,87 @@
<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>
</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-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<configuration>
<sources>
<source>src/</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<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 2d16b97

Please sign in to comment.