Skip to content

Commit 6ea11f4

Browse files
committed
Add missing pom stuff now parent has been removed
1 parent 5dc9d6a commit 6ea11f4

File tree

1 file changed

+61
-57
lines changed

1 file changed

+61
-57
lines changed

pom.xml

+61-57
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,57 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4+
45
<groupId>org.asynchttpclient</groupId>
56
<artifactId>async-http-client-project</artifactId>
6-
<name>Asynchronous Http Client Project</name>
77
<version>2.10.5-SNAPSHOT</version>
88
<packaging>pom</packaging>
9+
10+
<name>Asynchronous Http Client Project</name>
911
<description>
1012
The Async Http Client (AHC) library's purpose is to allow Java
1113
applications to easily execute HTTP requests and
1214
asynchronously process the response.
1315
</description>
1416
<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>[email protected]</email>
30+
</developer>
31+
</developers>
32+
1533
<scm>
16-
<url>https://github.com/AsyncHttpClient/async-http-client</url>
1734
<connection>scm:git:[email protected]:AsyncHttpClient/async-http-client.git</connection>
1835
<developerConnection>scm:git:[email protected]:AsyncHttpClient/async-http-client.git</developerConnection>
36+
<url>https://github.com/AsyncHttpClient/async-http-client</url>
1937
</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+
2050
<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>
2353
</issueManagement>
54+
2455
<mailingLists>
2556
<mailingList>
2657
<name>asynchttpclient</name>
@@ -31,20 +62,6 @@
3162
</mailingList>
3263
</mailingLists>
3364

34-
<developers>
35-
<developer>
36-
<id>slandelle</id>
37-
<name>Stephane Landelle</name>
38-
<email>[email protected]</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>
4865
<build>
4966
<resources>
5067
<resource>
@@ -57,25 +74,25 @@
5774
<extension>
5875
<groupId>org.apache.maven.wagon</groupId>
5976
<artifactId>wagon-ssh-external</artifactId>
60-
<version>1.0-beta-6</version>
77+
<version>3.3.4</version>
6178
</extension>
6279
<extension>
6380
<groupId>org.apache.maven.scm</groupId>
6481
<artifactId>maven-scm-provider-gitexe</artifactId>
65-
<version>1.6</version>
82+
<version>1.11.2</version>
6683
</extension>
6784
<extension>
6885
<groupId>org.apache.maven.scm</groupId>
6986
<artifactId>maven-scm-manager-plexus</artifactId>
70-
<version>1.6</version>
87+
<version>1.11.2</version>
7188
</extension>
7289
</extensions>
7390
<defaultGoal>install</defaultGoal>
7491
<pluginManagement>
7592
<plugins>
7693
<plugin>
7794
<artifactId>maven-release-plugin</artifactId>
78-
<version>3.0.0-M1</version>
95+
<version>2.5.3</version>
7996
</plugin>
8097
</plugins>
8198
</pluginManagement>
@@ -193,52 +210,39 @@
193210
<configuration>
194211
<doclint>none</doclint>
195212
</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>
196234
</plugin>
197235
</plugins>
198236
</build>
199237
<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>
225238
<profile>
226239
<id>test-output</id>
227240
<properties>
228241
<surefire.redirectTestOutputToFile>false</surefire.redirectTestOutputToFile>
229242
</properties>
230243
</profile>
231244
</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+
242246
<modules>
243247
<module>bom</module>
244248
<module>netty-utils</module>

0 commit comments

Comments
 (0)