|
2 | 2 | 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>com.ibm</groupId> |
| 5 | + <groupId>com.ibm.async</groupId> |
6 | 6 | <artifactId>asyncutil-aggregator</artifactId>
|
7 |
| - <version>0.0.2-SNAPSHOT</version> |
| 7 | + <version>0.1.0-SNAPSHOT</version> |
8 | 8 | <packaging>pom</packaging>
|
9 | 9 |
|
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> |
11 | 102 |
|
12 | 103 | <reporting>
|
13 | 104 | <plugins>
|
|
0 commit comments