|
4 | 4 |
|
5 | 5 | <groupId>org.asynchttpclient</groupId>
|
6 | 6 | <artifactId>async-http-client-project</artifactId>
|
7 |
| - <version>2.12.3</version> |
| 7 | + <version>2.12.4</version> |
8 | 8 | <packaging>pom</packaging>
|
9 | 9 |
|
10 | 10 | <name>Asynchronous Http Client Project</name>
|
|
24 | 24 |
|
25 | 25 | <developers>
|
26 | 26 | <developer>
|
27 |
| - <id>slandelle</id> |
28 |
| - <name>Stephane Landelle</name> |
29 |
| - |
| 27 | + <id>hyperxpro</id> |
| 28 | + <name>Aayush Atharva</name> |
| 29 | + |
30 | 30 | </developer>
|
31 | 31 | </developers>
|
32 | 32 |
|
33 | 33 | <scm>
|
34 | 34 | < connection>scm:git: [email protected]:AsyncHttpClient/async-http-client.git</ connection>
|
35 | 35 | < developerConnection>scm:git: [email protected]:AsyncHttpClient/async-http-client.git</ developerConnection>
|
36 | 36 | <url>https://github.com/AsyncHttpClient/async-http-client/tree/master</url>
|
37 |
| - <tag>async-http-client-project-2.12.3</tag> |
| 37 | + <tag>async-http-client-project-2.12.4</tag> |
38 | 38 | </scm>
|
39 | 39 |
|
40 | 40 | <distributionManagement>
|
|
220 | 220 | </execution>
|
221 | 221 | </executions>
|
222 | 222 | </plugin>
|
| 223 | + <plugin> |
| 224 | + <groupId>org.sonatype.plugins</groupId> |
| 225 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 226 | + <version>1.7.0</version> |
| 227 | + <extensions>true</extensions> |
| 228 | + <configuration> |
| 229 | + <serverId>ossrh</serverId> |
| 230 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 231 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 232 | + <skipRemoteStaging>false</skipRemoteStaging> |
| 233 | + </configuration> |
| 234 | + </plugin> |
| 235 | + <plugin> |
| 236 | + <groupId>org.apache.maven.plugins</groupId> |
| 237 | + <artifactId>maven-gpg-plugin</artifactId> |
| 238 | + <version>3.2.7</version> |
| 239 | + <executions> |
| 240 | + <execution> |
| 241 | + <id>sign-artifacts</id> |
| 242 | + <phase>verify</phase> |
| 243 | + <goals> |
| 244 | + <goal>sign</goal> |
| 245 | + </goals> |
| 246 | + <configuration> |
| 247 | + <!-- Prevent gpg from using pinentry programs --> |
| 248 | + <gpgArguments> |
| 249 | + <arg>--pinentry-mode</arg> |
| 250 | + <arg>loopback</arg> |
| 251 | + </gpgArguments> |
| 252 | + </configuration> |
| 253 | + </execution> |
| 254 | + </executions> |
| 255 | + </plugin> |
223 | 256 | </plugins>
|
224 | 257 | </build>
|
225 |
| - <profiles> |
226 |
| - <profile> |
227 |
| - <id>release-sign-artifacts</id> |
228 |
| - <activation> |
229 |
| - <property> |
230 |
| - <name>performRelease</name> |
231 |
| - <value>true</value> |
232 |
| - </property> |
233 |
| - </activation> |
234 |
| - <build> |
235 |
| - <plugins> |
236 |
| - <plugin> |
237 |
| - <artifactId>maven-gpg-plugin</artifactId> |
238 |
| - <version>1.6</version> |
239 |
| - <executions> |
240 |
| - <execution> |
241 |
| - <id>sign-artifacts</id> |
242 |
| - <phase>verify</phase> |
243 |
| - <goals> |
244 |
| - <goal>sign</goal> |
245 |
| - </goals> |
246 |
| - </execution> |
247 |
| - </executions> |
248 |
| - </plugin> |
249 |
| - </plugins> |
250 |
| - </build> |
251 |
| - </profile> |
252 |
| - <profile> |
253 |
| - <id>test-output</id> |
254 |
| - <properties> |
255 |
| - <surefire.redirectTestOutputToFile>false</surefire.redirectTestOutputToFile> |
256 |
| - </properties> |
257 |
| - </profile> |
258 |
| - </profiles> |
259 | 258 |
|
260 | 259 | <modules>
|
261 | 260 | <module>bom</module>
|
|
0 commit comments