|
3 | 3 |
|
4 | 4 | <groupId>com.esri.geometry</groupId> |
5 | 5 | <artifactId>esri-geometry-api</artifactId> |
6 | | - <version>1.1.2-SNAPSHOT</version> |
| 6 | + <version>1.2</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 |
|
9 | 9 | <name>Esri Geometry API for Java</name> |
|
19 | 19 | </license> |
20 | 20 | </licenses> |
21 | 21 |
|
| 22 | + <developers> |
| 23 | + <developer> |
| 24 | + <id>stolstov</id> |
| 25 | + <name>Sergey Tolstov</name> |
| 26 | + <organization>Esri</organization> |
| 27 | + <organizationUrl>http://www.esri.com</organizationUrl> |
| 28 | + <roles> |
| 29 | + <role>developer</role> |
| 30 | + </roles> |
| 31 | + </developer> |
| 32 | + <developer> |
| 33 | + <id>abalog</id> |
| 34 | + <name>Aaron Balog</name> |
| 35 | + <organization>Esri</organization> |
| 36 | + <organizationUrl>http://www.esri.com</organizationUrl> |
| 37 | + <roles> |
| 38 | + <role>developer</role> |
| 39 | + </roles> |
| 40 | + </developer> |
| 41 | + </developers> |
| 42 | + |
22 | 43 | <scm> |
23 | 44 | < connection>scm:git: [email protected]:Esri/geometry-api-java.git</ connection> |
24 | 45 | < developerConnection>scm:git: [email protected]:Esri/geometry-api-java.git</ developerConnection> |
25 | 46 | < url> [email protected]:Esri/geometry-api-java.git</ url> |
26 | 47 | </scm> |
27 | 48 |
|
| 49 | + <profiles> |
| 50 | + <profile> |
| 51 | + <id>release-sign-artifacts</id> |
| 52 | + <activation> |
| 53 | + <property> |
| 54 | + <name>performRelease</name> |
| 55 | + <value>true</value> |
| 56 | + </property> |
| 57 | + </activation> |
| 58 | + <build> |
| 59 | + <plugins> |
| 60 | + <plugin> |
| 61 | + <groupId>org.apache.maven.plugins</groupId> |
| 62 | + <artifactId>maven-gpg-plugin</artifactId> |
| 63 | + <executions> |
| 64 | + <execution> |
| 65 | + <id>sign-artifacts</id> |
| 66 | + <phase>verify</phase> |
| 67 | + <goals> |
| 68 | + <goal>sign</goal> |
| 69 | + </goals> |
| 70 | + </execution> |
| 71 | + </executions> |
| 72 | + </plugin> |
| 73 | + </plugins> |
| 74 | + </build> |
| 75 | + </profile> |
| 76 | + </profiles> |
| 77 | + |
| 78 | + <distributionManagement> |
| 79 | + <snapshotRepository> |
| 80 | + <id>ossrh</id> |
| 81 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 82 | + </snapshotRepository> |
| 83 | + </distributionManagement> |
| 84 | + |
28 | 85 | <properties> |
29 | 86 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
30 | 87 |
|
|
42 | 99 | <javadoc.plugin.version>2.9</javadoc.plugin.version> |
43 | 100 | </properties> |
44 | 101 |
|
45 | | - <!-- this parent is needed for central repository hosting --> |
46 | | - <parent> |
47 | | - <groupId>org.sonatype.oss</groupId> |
48 | | - <artifactId>oss-parent</artifactId> |
49 | | - <version>7</version> |
50 | | - </parent> |
51 | | - |
52 | 102 | <dependencies> |
53 | 103 | <dependency> |
54 | 104 | <groupId>org.json</groupId> |
|
125 | 175 | </execution> |
126 | 176 | </executions> |
127 | 177 | </plugin> |
| 178 | + <plugin> |
| 179 | + <groupId>org.sonatype.plugins</groupId> |
| 180 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 181 | + <version>1.6.2</version> |
| 182 | + <extensions>true</extensions> |
| 183 | + <configuration> |
| 184 | + <serverId>ossrh</serverId> |
| 185 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 186 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 187 | + </configuration> |
| 188 | + </plugin> |
128 | 189 | </plugins> |
129 | 190 | </build> |
130 | 191 | </project> |
0 commit comments