|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | + |
4 | 5 | <groupId>org.asynchttpclient</groupId> |
5 | 6 | <artifactId>async-http-client-project</artifactId> |
6 | | - <name>Asynchronous Http Client Project</name> |
7 | 7 | <version>2.10.5-SNAPSHOT</version> |
8 | 8 | <packaging>pom</packaging> |
| 9 | + |
| 10 | + <name>Asynchronous Http Client Project</name> |
9 | 11 | <description> |
10 | 12 | The Async Http Client (AHC) library's purpose is to allow Java |
11 | 13 | applications to easily execute HTTP requests and |
12 | 14 | asynchronously process the response. |
13 | 15 | </description> |
14 | 16 | <url>http://github.com/AsyncHttpClient/async-http-client</url> |
| 17 | + |
| 18 | + <licenses> |
| 19 | + <license> |
| 20 | + <name>The Apache Software License, Version 2.0</name> |
| 21 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 22 | + </license> |
| 23 | + </licenses> |
| 24 | + |
| 25 | + <developers> |
| 26 | + <developer> |
| 27 | + <id>slandelle</id> |
| 28 | + <name>Stephane Landelle</name> |
| 29 | + |
| 30 | + </developer> |
| 31 | + </developers> |
| 32 | + |
15 | 33 | <scm> |
16 | | - <url>https://github.com/AsyncHttpClient/async-http-client</url> |
17 | 34 | < connection>scm:git: [email protected]:AsyncHttpClient/async-http-client.git</ connection> |
18 | 35 | < developerConnection>scm:git: [email protected]:AsyncHttpClient/async-http-client.git</ developerConnection> |
| 36 | + <url>https://github.com/AsyncHttpClient/async-http-client/tree/master</url> |
19 | 37 | </scm> |
| 38 | + |
| 39 | + <distributionManagement> |
| 40 | + <snapshotRepository> |
| 41 | + <id>sonatype-nexus-staging</id> |
| 42 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 43 | + </snapshotRepository> |
| 44 | + <repository> |
| 45 | + <id>sonatype-nexus-staging</id> |
| 46 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 47 | + </repository> |
| 48 | + </distributionManagement> |
| 49 | + |
20 | 50 | <issueManagement> |
21 | | - <system>jira</system> |
22 | | - <url>https://issues.sonatype.org/browse/AHC</url> |
| 51 | + <system>github</system> |
| 52 | + <url>https://github.com/AsyncHttpClient/async-http-client/issues</url> |
23 | 53 | </issueManagement> |
| 54 | + |
24 | 55 | <mailingLists> |
25 | 56 | <mailingList> |
26 | 57 | <name>asynchttpclient</name> |
|
31 | 62 | </mailingList> |
32 | 63 | </mailingLists> |
33 | 64 |
|
34 | | - <developers> |
35 | | - <developer> |
36 | | - <id>slandelle</id> |
37 | | - <name>Stephane Landelle</name> |
38 | | - |
39 | | - </developer> |
40 | | - </developers> |
41 | | - <licenses> |
42 | | - <license> |
43 | | - <name>Apache License 2.0</name> |
44 | | - <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> |
45 | | - <distribution>repo</distribution> |
46 | | - </license> |
47 | | - </licenses> |
48 | 65 | <build> |
49 | 66 | <resources> |
50 | 67 | <resource> |
|
57 | 74 | <extension> |
58 | 75 | <groupId>org.apache.maven.wagon</groupId> |
59 | 76 | <artifactId>wagon-ssh-external</artifactId> |
60 | | - <version>1.0-beta-6</version> |
| 77 | + <version>3.3.4</version> |
61 | 78 | </extension> |
62 | 79 | <extension> |
63 | 80 | <groupId>org.apache.maven.scm</groupId> |
64 | 81 | <artifactId>maven-scm-provider-gitexe</artifactId> |
65 | | - <version>1.6</version> |
| 82 | + <version>1.11.2</version> |
66 | 83 | </extension> |
67 | 84 | <extension> |
68 | 85 | <groupId>org.apache.maven.scm</groupId> |
69 | 86 | <artifactId>maven-scm-manager-plexus</artifactId> |
70 | | - <version>1.6</version> |
| 87 | + <version>1.11.2</version> |
71 | 88 | </extension> |
72 | 89 | </extensions> |
73 | 90 | <defaultGoal>install</defaultGoal> |
74 | 91 | <pluginManagement> |
75 | 92 | <plugins> |
76 | 93 | <plugin> |
77 | 94 | <artifactId>maven-release-plugin</artifactId> |
78 | | - <version>3.0.0-M1</version> |
| 95 | + <version>2.5.3</version> |
79 | 96 | </plugin> |
80 | 97 | </plugins> |
81 | 98 | </pluginManagement> |
|
193 | 210 | <configuration> |
194 | 211 | <doclint>none</doclint> |
195 | 212 | </configuration> |
| 213 | + <executions> |
| 214 | + <execution> |
| 215 | + <id>attach-javadocs</id> |
| 216 | + <goals> |
| 217 | + <goal>jar</goal> |
| 218 | + </goals> |
| 219 | + </execution> |
| 220 | + </executions> |
| 221 | + </plugin> |
| 222 | + <plugin> |
| 223 | + <artifactId>maven-gpg-plugin</artifactId> |
| 224 | + <version>1.6</version> |
| 225 | + <executions> |
| 226 | + <execution> |
| 227 | + <id>sign-artifacts</id> |
| 228 | + <phase>verify</phase> |
| 229 | + <goals> |
| 230 | + <goal>sign</goal> |
| 231 | + </goals> |
| 232 | + </execution> |
| 233 | + </executions> |
196 | 234 | </plugin> |
197 | 235 | </plugins> |
198 | 236 | </build> |
199 | 237 | <profiles> |
200 | | - <profile> |
201 | | - <id>release-sign-artifacts</id> |
202 | | - <activation> |
203 | | - <property> |
204 | | - <name>performRelease</name> |
205 | | - <value>true</value> |
206 | | - </property> |
207 | | - </activation> |
208 | | - <build> |
209 | | - <plugins> |
210 | | - <plugin> |
211 | | - <artifactId>maven-gpg-plugin</artifactId> |
212 | | - <executions> |
213 | | - <execution> |
214 | | - <id>sign-artifacts</id> |
215 | | - <phase>verify</phase> |
216 | | - <goals> |
217 | | - <goal>sign</goal> |
218 | | - </goals> |
219 | | - </execution> |
220 | | - </executions> |
221 | | - </plugin> |
222 | | - </plugins> |
223 | | - </build> |
224 | | - </profile> |
225 | 238 | <profile> |
226 | 239 | <id>test-output</id> |
227 | 240 | <properties> |
228 | 241 | <surefire.redirectTestOutputToFile>false</surefire.redirectTestOutputToFile> |
229 | 242 | </properties> |
230 | 243 | </profile> |
231 | 244 | </profiles> |
232 | | - <distributionManagement> |
233 | | - <snapshotRepository> |
234 | | - <id>sonatype-nexus-staging</id> |
235 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
236 | | - </snapshotRepository> |
237 | | - <repository> |
238 | | - <id>sonatype-nexus-staging</id> |
239 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
240 | | - </repository> |
241 | | - </distributionManagement> |
| 245 | + |
242 | 246 | <modules> |
243 | 247 | <module>bom</module> |
244 | 248 | <module>netty-utils</module> |
|
0 commit comments