|
2 | 2 | xmlns="http://maven.apache.org/POM/4.0.0" |
3 | 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"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | | - <artifactId>parent</artifactId> |
| 5 | + <artifactId>client-java</artifactId> |
6 | 6 | <groupId>io.kubernetes</groupId> |
7 | 7 | <version>1.0-SNAPSHOT</version> |
8 | 8 | <packaging>pom</packaging> |
| 9 | + <name>Kubernetes Client API</name> |
| 10 | + |
9 | 11 | <modules> |
10 | 12 | <module>kubernetes</module> |
11 | 13 | <module>examples</module> |
12 | 14 | <module>util</module> |
13 | 15 | </modules> |
| 16 | + |
| 17 | + <scm> |
| 18 | + <connection>scm:git:git@github.com:kubernetes-client/java.git</connection> |
| 19 | + <developerConnection>scm:git:git@github.com:kubernetes-client/java.git</developerConnection> |
| 20 | + <url>https://github.com/kubernetes-client/java</url> |
| 21 | + </scm> |
| 22 | + |
| 23 | + <prerequisites> |
| 24 | + <maven>2.2.0</maven> |
| 25 | + </prerequisites> |
| 26 | + |
| 27 | + <licenses> |
| 28 | + <license> |
| 29 | + <name>The Apache Software License, Version 2.0</name> |
| 30 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 31 | + <distribution>repo</distribution> |
| 32 | + </license> |
| 33 | + </licenses> |
| 34 | + |
| 35 | + <developers> |
| 36 | + <developer> |
| 37 | + <name>The Kubernetes Authors</name> |
| 38 | + <email>kubernetes-dev@googlegroups.com</email> |
| 39 | + <organization>Kubernetes</organization> |
| 40 | + <organizationUrl>https://kubernetes.io</organizationUrl> |
| 41 | + </developer> |
| 42 | + </developers> |
| 43 | + |
| 44 | + <distributionManagement> |
| 45 | + <snapshotRepository> |
| 46 | + <id>ossrh</id> |
| 47 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 48 | + </snapshotRepository> |
| 49 | + <repository> |
| 50 | + <id>ossrh</id> |
| 51 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 52 | + </repository> |
| 53 | + </distributionManagement> |
| 54 | + |
| 55 | + <build> |
| 56 | + <plugins> |
| 57 | + <plugin> |
| 58 | + <groupId>org.apache.maven.plugins</groupId> |
| 59 | + <artifactId>maven-release-plugin</artifactId> |
| 60 | + <version>2.5.3</version> |
| 61 | + <configuration> |
| 62 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 63 | + <useReleaseProfile>false</useReleaseProfile> |
| 64 | + <releaseProfiles>release</releaseProfiles> |
| 65 | + <goals>deploy</goals> |
| 66 | + </configuration> |
| 67 | + </plugin> |
| 68 | + </plugins> |
| 69 | + </build> |
| 70 | + |
| 71 | + <profiles> |
| 72 | + <profile> |
| 73 | + <id>sign-artifacts</id> |
| 74 | + <build> |
| 75 | + <plugins> |
| 76 | + <plugin> |
| 77 | + <groupId>org.apache.maven.plugins</groupId> |
| 78 | + <artifactId>maven-gpg-plugin</artifactId> |
| 79 | + <version>1.5</version> |
| 80 | + <executions> |
| 81 | + <execution> |
| 82 | + <id>sign-artifacts</id> |
| 83 | + <phase>verify</phase> |
| 84 | + <goals> |
| 85 | + <goal>sign</goal> |
| 86 | + </goals> |
| 87 | + </execution> |
| 88 | + </executions> |
| 89 | + </plugin> |
| 90 | + </plugins> |
| 91 | + </build> |
| 92 | + </profile> |
| 93 | + </profiles> |
| 94 | + |
14 | 95 | </project> |
0 commit comments