|
1 | | -<project |
2 | | - xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - 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"> |
| 1 | +<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"> |
4 | 2 | <modelVersion>4.0.0</modelVersion> |
5 | 3 | <artifactId>client-java</artifactId> |
6 | 4 | <groupId>io.kubernetes</groupId> |
7 | | - <version>0.1-SNAPSHOT</version> |
| 5 | + <version>0.2-SNAPSHOT</version> |
8 | 6 | <packaging>pom</packaging> |
9 | 7 | <name>Kubernetes Client API</name> |
| 8 | + <url>https://github.com/kubernetes-client/java</url> |
| 9 | + <description>Kubernetes Client Library</description> |
10 | 10 |
|
11 | 11 | <modules> |
12 | | - <module>kubernetes</module> |
13 | | - <module>examples</module> |
14 | 12 | <module>util</module> |
| 13 | + <module>examples</module> |
| 14 | + <module>kubernetes</module> |
15 | 15 | </modules> |
16 | 16 |
|
17 | 17 | <scm> |
18 | 18 | <connection>scm:git:git@github.com:kubernetes-client/java.git</connection> |
19 | 19 | <developerConnection>scm:git:git@github.com:kubernetes-client/java.git</developerConnection> |
20 | 20 | <url>https://github.com/kubernetes-client/java</url> |
| 21 | + <tag>HEAD</tag> |
21 | 22 | </scm> |
22 | 23 |
|
23 | 24 | <prerequisites> |
|
45 | 46 | <snapshotRepository> |
46 | 47 | <id>ossrh</id> |
47 | 48 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 49 | + <layout>default</layout> |
48 | 50 | </snapshotRepository> |
49 | 51 | <repository> |
50 | 52 | <id>ossrh</id> |
51 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 53 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
| 54 | + <layout>default</layout> |
52 | 55 | </repository> |
53 | 56 | </distributionManagement> |
54 | 57 |
|
|
60 | 63 | <version>2.5.3</version> |
61 | 64 | <configuration> |
62 | 65 | <autoVersionSubmodules>true</autoVersionSubmodules> |
63 | | - <releaseProfiles>release</releaseProfiles> |
| 66 | + <releaseProfiles>release-sign-artifacts</releaseProfiles> |
64 | 67 | <goals>deploy</goals> |
65 | 68 | </configuration> |
66 | 69 | </plugin> |
|
69 | 72 | <profiles> |
70 | 73 | <profile> |
71 | 74 | <id>release-sign-artifacts</id> |
72 | | - <activation> |
73 | | - <property> |
74 | | - <name>release</name> |
75 | | - <value>true</value> |
76 | | - </property> |
77 | | - </activation> |
78 | 75 | <build> |
79 | 76 | <plugins> |
80 | 77 | <plugin> |
|
0 commit comments