Skip to content
This repository was archived by the owner on Jul 18, 2024. It is now read-only.

Commit 778d171

Browse files
committedMay 4, 2018
Update pom
1 parent 7cd027a commit 778d171

File tree

3 files changed

+172
-11
lines changed

3 files changed

+172
-11
lines changed
 

‎asyncutil-flow/pom.xml

+40-5
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,48 @@
22
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>
44

5-
<groupId>com.ibm</groupId>
5+
<parent>
6+
<groupId>com.ibm.async</groupId>
7+
<artifactId>asyncutil-aggregator</artifactId>
8+
<version>0.1.0-SNAPSHOT</version>
9+
</parent>
10+
11+
<groupId>com.ibm.async</groupId>
612
<artifactId>asyncutil-flow</artifactId>
7-
<version>0.0.2-SNAPSHOT</version>
13+
<version>0.1.0-SNAPSHOT</version>
814
<packaging>jar</packaging>
915

1016
<name>asyncutil-flow</name>
11-
<url>http://maven.apache.org</url>
17+
<description>Utilities for working with asyncutil and Flow</description>
18+
<url>http://github.com/ibm/java-async-util</url>
19+
20+
<licenses>
21+
<license>
22+
<name>The Apache Software License, Version 2.0</name>
23+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
24+
</license>
25+
</licenses>
26+
27+
<developers>
28+
<developer>
29+
<name>Ravi Khadiwala</name>
30+
<email>rkhadiwa@us.ibm.com</email>
31+
<organization>IBM</organization>
32+
<organizationUrl>http://www.ibm.com</organizationUrl>
33+
</developer>
34+
<developer>
35+
<name>Renar Narubin</name>
36+
<email>rnarubin@us.ibm.com</email>
37+
<organization>IBM</organization>
38+
<organizationUrl>http://www.ibm.com</organizationUrl>
39+
</developer>
40+
</developers>
41+
42+
<scm>
43+
<connection>scm:git:git://github.com/ibm/java-async-util.git</connection>
44+
<developerConnection>scm:git:ssh://github.com:ibm/java-async-util.git</developerConnection>
45+
<url>http://github.com/ibm/java-async-util</url>
46+
</scm>
1247

1348
<properties>
1449
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -52,9 +87,9 @@
5287

5388
<dependencies>
5489
<dependency>
55-
<groupId>com.ibm</groupId>
90+
<groupId>com.ibm.async</groupId>
5691
<artifactId>asyncutil</artifactId>
57-
<version>0.0.2-SNAPSHOT</version>
92+
<version>0.1.0-SNAPSHOT</version>
5893
</dependency>
5994
<dependency>
6095
<groupId>junit</groupId>

‎asyncutil/pom.xml

+38-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,48 @@
22
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>
44

5-
<groupId>com.ibm</groupId>
5+
<parent>
6+
<groupId>com.ibm.async</groupId>
7+
<artifactId>asyncutil-aggregator</artifactId>
8+
<version>0.1.0-SNAPSHOT</version>
9+
</parent>
10+
11+
<groupId>com.ibm.async</groupId>
612
<artifactId>asyncutil</artifactId>
7-
<version>0.0.2-SNAPSHOT</version>
13+
<version>0.1.0-SNAPSHOT</version>
814
<packaging>jar</packaging>
915

1016
<name>asyncutil</name>
11-
<url>http://maven.apache.org</url>
17+
<description>Utilities for working with CompletionStages</description>
18+
<url>http://github.com/ibm/java-async-util</url>
19+
20+
<licenses>
21+
<license>
22+
<name>The Apache Software License, Version 2.0</name>
23+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
24+
</license>
25+
</licenses>
26+
27+
<developers>
28+
<developer>
29+
<name>Ravi Khadiwala</name>
30+
<email>rkhadiwa@us.ibm.com</email>
31+
<organization>IBM</organization>
32+
<organizationUrl>http://www.ibm.com</organizationUrl>
33+
</developer>
34+
<developer>
35+
<name>Renar Narubin</name>
36+
<email>rnarubin@us.ibm.com</email>
37+
<organization>IBM</organization>
38+
<organizationUrl>http://www.ibm.com</organizationUrl>
39+
</developer>
40+
</developers>
41+
42+
<scm>
43+
<connection>scm:git:git://github.com/ibm/java-async-util.git</connection>
44+
<developerConnection>scm:git:ssh://github.com:ibm/java-async-util.git</developerConnection>
45+
<url>http://github.com/ibm/java-async-util</url>
46+
</scm>
1247

1348
<properties>
1449
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

‎pom.xml

+94-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,103 @@
22
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>
44

5-
<groupId>com.ibm</groupId>
5+
<groupId>com.ibm.async</groupId>
66
<artifactId>asyncutil-aggregator</artifactId>
7-
<version>0.0.2-SNAPSHOT</version>
7+
<version>0.1.0-SNAPSHOT</version>
88
<packaging>pom</packaging>
99

10-
<url>http://maven.apache.org</url>
10+
<name>asyncutil-aggregator</name>
11+
<description>Utilities for working with CompletionStages</description>
12+
<url>http://github.com/ibm/java-async-util</url>
13+
14+
<licenses>
15+
<license>
16+
<name>The Apache Software License, Version 2.0</name>
17+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
18+
</license>
19+
</licenses>
20+
21+
<developers>
22+
<developer>
23+
<name>Ravi Khadiwala</name>
24+
<email>rkhadiwa@us.ibm.com</email>
25+
<organization>IBM</organization>
26+
<organizationUrl>http://www.ibm.com</organizationUrl>
27+
</developer>
28+
<developer>
29+
<name>Renar Narubin</name>
30+
<email>rnarubin@us.ibm.com</email>
31+
<organization>IBM</organization>
32+
<organizationUrl>http://www.ibm.com</organizationUrl>
33+
</developer>
34+
</developers>
35+
36+
<scm>
37+
<connection>scm:git:git://github.com/ibm/java-async-util.git</connection>
38+
<developerConnection>scm:git:ssh://github.com:ibm/java-async-util.git</developerConnection>
39+
<url>http://github.com/ibm/java-async-util</url>
40+
</scm>
41+
42+
<distributionManagement>
43+
<snapshotRepository>
44+
<id>ossrh</id>
45+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
46+
</snapshotRepository>
47+
<repository>
48+
<id>ossrh</id>
49+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
50+
</repository>
51+
</distributionManagement>
52+
53+
<profiles>
54+
<profile>
55+
<id>release</id>
56+
<build>
57+
<plugins>
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-source-plugin</artifactId>
61+
<version>2.2.1</version>
62+
<executions>
63+
<execution>
64+
<id>attach-sources</id>
65+
<goals>
66+
<goal>jar-no-fork</goal>
67+
</goals>
68+
</execution>
69+
</executions>
70+
</plugin>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-javadoc-plugin</artifactId>
74+
<version>2.10.4</version>
75+
<executions>
76+
<execution>
77+
<id>attach-javadocs</id>
78+
<goals>
79+
<goal>jar</goal>
80+
</goals>
81+
</execution>
82+
</executions>
83+
</plugin>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-gpg-plugin</artifactId>
87+
<version>1.5</version>
88+
<executions>
89+
<execution>
90+
<id>sign-artifacts</id>
91+
<phase>verify</phase>
92+
<goals>
93+
<goal>sign</goal>
94+
</goals>
95+
</execution>
96+
</executions>
97+
</plugin>
98+
</plugins>
99+
</build>
100+
</profile>
101+
</profiles>
11102

12103
<reporting>
13104
<plugins>

0 commit comments

Comments
 (0)
This repository has been archived.