|
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 | + <email>slandelle@gatling.io</email> |
| 30 | + </developer> |
| 31 | + </developers> |
| 32 | + |
15 | 33 | <scm> |
16 | | - <url>https://github.com/AsyncHttpClient/async-http-client</url> |
17 | 34 | <connection>scm:git:git@github.com:AsyncHttpClient/async-http-client.git</connection> |
18 | 35 | <developerConnection>scm:git:git@github.com:AsyncHttpClient/async-http-client.git</developerConnection> |
| 36 | + <url>https://github.com/AsyncHttpClient/async-http-client</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 | | - <email>slandelle@gatling.io</email> |
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> |
|
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> |
196 | 221 | </plugin> |
197 | 222 | </plugins> |
198 | 223 | </build> |
|
229 | 254 | </properties> |
230 | 255 | </profile> |
231 | 256 | </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> |
| 257 | + |
242 | 258 | <modules> |
243 | 259 | <module>bom</module> |
244 | 260 | <module>netty-utils</module> |
|
0 commit comments