|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
6 | 6 | <groupId>io.armadaproject</groupId> |
7 | | - <artifactId>armada-grpc-java-client</artifactId> |
8 | | - <version>0.0.4</version> |
| 7 | + <artifactId>java-client</artifactId> |
| 8 | + <version>0.0.1</version> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 |
|
11 | | - <name>armada-grpc-java-client</name> |
| 11 | + <name>java-client</name> |
| 12 | + <url>https://github.com/armadaproject/java-client</url> |
12 | 13 |
|
13 | 14 | <properties> |
14 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
26 | 27 | <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> |
27 | 28 | </properties> |
28 | 29 |
|
| 30 | + <licenses> |
| 31 | + <license> |
| 32 | + <name>Apache 2.0 License</name> |
| 33 | + <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> |
| 34 | + <distribution>repo</distribution> |
| 35 | + </license> |
| 36 | + </licenses> |
| 37 | + |
| 38 | + <developers> |
| 39 | + <developer> |
| 40 | + <name>Mladjan Gadzic</name> |
| 41 | + <email>mladjan@gr-oss.io</email> |
| 42 | + <organization>G-Research</organization> |
| 43 | + <organizationUrl>https://www.gresearch.com/</organizationUrl> |
| 44 | + </developer> |
| 45 | + </developers> |
| 46 | + |
| 47 | + <scm> |
| 48 | + <connection>scm:git:git://github.com/armadaproject/java-client.git</connection> |
| 49 | + <developerConnection>scm:git:ssh://github.com:armadaproject/java-client.git</developerConnection> |
| 50 | + <url>http://github.com/armadaproject/java-client/tree/main</url> |
| 51 | + <tag/> |
| 52 | + </scm> |
| 53 | + |
29 | 54 | <distributionManagement> |
30 | 55 | <repository> |
31 | 56 | <id>github</id> |
32 | 57 | <url>https://maven.pkg.github.com/mladjan-gadzic/armada-grpc-java-client</url> |
33 | 58 | </repository> |
| 59 | + <repository> |
| 60 | + <id>central</id> |
| 61 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 62 | + </repository> |
34 | 63 | </distributionManagement> |
35 | 64 |
|
36 | 65 | <build> |
|
206 | 235 | </execution> |
207 | 236 | </executions> |
208 | 237 | </plugin> |
| 238 | + |
| 239 | + <plugin> |
| 240 | + <groupId>org.sonatype.central</groupId> |
| 241 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 242 | + <version>0.6.0</version> |
| 243 | + <extensions>true</extensions> |
| 244 | + <configuration> |
| 245 | + <publishingServerId>central</publishingServerId> |
| 246 | + <autoPublish>true</autoPublish> |
| 247 | + </configuration> |
| 248 | + </plugin> |
| 249 | + |
| 250 | + <plugin> |
| 251 | + <groupId>org.apache.maven.plugins</groupId> |
| 252 | + <artifactId>maven-gpg-plugin</artifactId> |
| 253 | + <version>3.2.7</version> |
| 254 | + <executions> |
| 255 | + <execution> |
| 256 | + <id>sign-artifacts</id> |
| 257 | + <phase>verify</phase> |
| 258 | + <goals> |
| 259 | + <goal>sign</goal> |
| 260 | + </goals> |
| 261 | + </execution> |
| 262 | + </executions> |
| 263 | + </plugin> |
209 | 264 | </plugins> |
210 | 265 | </build> |
211 | 266 |
|
|
0 commit comments