|
5 | 5 |
|
6 | 6 | <groupId>com.aventstack</groupId> |
7 | 7 | <artifactId>extentreports-testng-adapter</artifactId> |
8 | | - <version>1.0.5</version> |
| 8 | + <version>1.0.6</version> |
9 | 9 | <name>extentreports-testng-adapter</name> |
10 | 10 | <url>http://extentreports.com</url> |
11 | 11 | <description>TestNG adapter for Extent Framework</description> |
|
42 | 42 | <dependency> |
43 | 43 | <groupId>com.aventstack</groupId> |
44 | 44 | <artifactId>extentreports</artifactId> |
45 | | - <version>4.1.2</version> |
| 45 | + <version>4.1.5</version> |
46 | 46 | </dependency> |
47 | 47 | <dependency> |
48 | 48 | <groupId>org.mongodb</groupId> |
|
72 | 72 | <artifactId>maven-resources-plugin</artifactId> |
73 | 73 | <version>2.7</version> |
74 | 74 | </plugin> |
| 75 | + <plugin> |
| 76 | + <groupId>org.apache.maven.plugins</groupId> |
| 77 | + <artifactId>maven-gpg-plugin</artifactId> |
| 78 | + <version>1.6</version> |
| 79 | + <executions> |
| 80 | + <execution> |
| 81 | + <id>sign-artifacts</id> |
| 82 | + <phase>verify</phase> |
| 83 | + <goals> |
| 84 | + <goal>sign</goal> |
| 85 | + </goals> |
| 86 | + </execution> |
| 87 | + </executions> |
| 88 | + </plugin> |
75 | 89 | </plugins> |
76 | 90 | </build> |
77 | 91 |
|
| 92 | + <profiles> |
| 93 | + <profile> |
| 94 | + <id>release-sign-artifacts</id> |
| 95 | + <activation> |
| 96 | + <property> |
| 97 | + <name>performRelease</name> |
| 98 | + <value>true</value> |
| 99 | + </property> |
| 100 | + </activation> |
| 101 | + <properties> |
| 102 | + <gpg.keyname>41414BBD</gpg.keyname> <!-- GPG Key ID to use for signing --> |
| 103 | + <release.username>anshooarora</release.username> <!-- username for our svn repository --> |
| 104 | + </properties> |
| 105 | + <build> |
| 106 | + <resources> |
| 107 | + </resources> |
| 108 | + <plugins> |
| 109 | + <plugin> |
| 110 | + <groupId>org.apache.maven.plugins</groupId> |
| 111 | + <artifactId>maven-gpg-plugin</artifactId> |
| 112 | + <version>1.4</version> |
| 113 | + <executions> |
| 114 | + <execution> |
| 115 | + <id>sign-artifacts</id> |
| 116 | + <phase>verify</phase> |
| 117 | + <configuration> |
| 118 | + <sources> |
| 119 | + <source>src/</source> |
| 120 | + </sources> |
| 121 | + </configuration> |
| 122 | + </execution> |
| 123 | + </executions> |
| 124 | + </plugin> |
| 125 | + <plugin> |
| 126 | + <groupId>org.apache.maven.plugins</groupId> |
| 127 | + <artifactId>maven-source-plugin</artifactId> |
| 128 | + <version>2.3</version> |
| 129 | + <executions> |
| 130 | + <execution> |
| 131 | + <id>attach-sources</id> |
| 132 | + <goals> |
| 133 | + <goal>jar</goal> |
| 134 | + </goals> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + </plugin> |
| 138 | + <plugin> |
| 139 | + <groupId>org.apache.maven.plugins</groupId> |
| 140 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 141 | + <version>2.3</version> |
| 142 | + <executions> |
| 143 | + <execution> |
| 144 | + <id>attach-javadocs</id> |
| 145 | + <goals> |
| 146 | + <goal>jar</goal> |
| 147 | + </goals> |
| 148 | + </execution> |
| 149 | + </executions> |
| 150 | + </plugin> |
| 151 | + </plugins> |
| 152 | + </build> |
| 153 | + </profile> |
| 154 | + </profiles> |
| 155 | + |
78 | 156 | <distributionManagement> |
79 | 157 | <snapshotRepository> |
80 | 158 | <id>ossrh</id> |
|
0 commit comments