|
1 | 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"> |
2 | | - <modelVersion>4.0.0</modelVersion> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
3 | 3 |
|
4 | | - <parent> |
5 | | - <groupId>io.kubernetes</groupId> |
6 | | - <artifactId>client-java-examples-parent</artifactId> |
7 | | - <version>1.0.0-SNAPSHOT</version> |
8 | | - <relativePath>../pom.xml</relativePath> |
9 | | - </parent> |
| 4 | + <parent> |
| 5 | + <groupId>io.kubernetes</groupId> |
| 6 | + <artifactId>client-java-examples-parent</artifactId> |
| 7 | + <version>1.0.0-SNAPSHOT</version> |
| 8 | + <relativePath>../pom.xml</relativePath> |
| 9 | + </parent> |
10 | 10 |
|
11 | | - <artifactId>client-java-examples-release-10</artifactId> |
12 | | - <packaging>bundle</packaging> |
13 | | - <name>client-java-examples-release-10</name> |
| 11 | + <artifactId>client-java-examples-release-10</artifactId> |
| 12 | + <packaging>bundle</packaging> |
| 13 | + <name>client-java-examples-release-10</name> |
14 | 14 |
|
15 | | - <properties> |
16 | | - <kubernetes.client.version>10.0.0</kubernetes.client.version> |
17 | | - </properties> |
18 | | - <dependencies> |
| 15 | + <properties> |
| 16 | + <kubernetes.client.version>10.0.0</kubernetes.client.version> |
| 17 | + </properties> |
| 18 | + <dependencies> |
19 | 19 | <dependency> |
20 | 20 | <groupId>io.prometheus</groupId> |
21 | 21 | <artifactId>simpleclient</artifactId> |
|
26 | 26 | <artifactId>simpleclient_httpserver</artifactId> |
27 | 27 | <version>0.9.0</version> |
28 | 28 | </dependency> |
29 | | - <dependency> |
30 | | - <groupId>io.kubernetes</groupId> |
31 | | - <artifactId>client-java-api</artifactId> |
32 | | - <version>${kubernetes.client.version}</version> |
33 | | - </dependency> |
34 | | - <dependency> |
35 | | - <groupId>io.kubernetes</groupId> |
36 | | - <artifactId>client-java</artifactId> |
37 | | - <version>${kubernetes.client.version}</version> |
38 | | - </dependency> |
39 | | - <dependency> |
40 | | - <groupId>io.kubernetes</groupId> |
41 | | - <artifactId>client-java-extended</artifactId> |
42 | | - <version>${kubernetes.client.version}</version> |
43 | | - </dependency> |
44 | | - <dependency> |
45 | | - <groupId>io.kubernetes</groupId> |
46 | | - <artifactId>client-java-spring-integration</artifactId> |
47 | | - <version>${kubernetes.client.version}</version> |
48 | | - </dependency> |
49 | | - <dependency> |
50 | | - <groupId>io.kubernetes</groupId> |
51 | | - <artifactId>client-java-proto</artifactId> |
52 | | - <version>${kubernetes.client.version}</version> |
53 | | - </dependency> |
54 | | - <dependency> |
55 | | - <groupId>com.google.guava</groupId> |
56 | | - <artifactId>guava</artifactId> |
57 | | - </dependency> |
58 | | - <dependency> |
59 | | - <groupId>commons-cli</groupId> |
60 | | - <artifactId>commons-cli</artifactId> |
61 | | - </dependency> |
62 | | - <dependency> |
63 | | - <groupId>io.kubernetes</groupId> |
64 | | - <artifactId>client-java-cert-manager-models</artifactId> |
65 | | - <version>10.0.0</version> |
66 | | - </dependency> |
67 | | - <dependency> |
68 | | - <groupId>io.kubernetes</groupId> |
69 | | - <artifactId>client-java-prometheus-operator-models</artifactId> |
70 | | - <version>10.0.0</version> |
71 | | - </dependency> |
72 | | - <!-- test dependencies --> |
73 | | - <dependency> |
74 | | - <groupId>junit</groupId> |
75 | | - <artifactId>junit</artifactId> |
76 | | - <scope>test</scope> |
77 | | - </dependency> |
78 | | - <dependency> |
79 | | - <groupId>com.github.tomakehurst</groupId> |
80 | | - <artifactId>wiremock</artifactId> |
81 | | - <scope>test</scope> |
82 | | - </dependency> |
83 | | - </dependencies> |
84 | | - <build> |
85 | | - <plugins> |
86 | | - <plugin> |
87 | | - <groupId>org.apache.felix</groupId> |
88 | | - <artifactId>maven-bundle-plugin</artifactId> |
89 | | - <extensions>true</extensions> |
90 | | - </plugin> |
91 | | - <plugin> |
92 | | - <groupId>org.apache.maven.plugins</groupId> |
93 | | - <artifactId>maven-deploy-plugin</artifactId> |
94 | | - <version>2.8.2</version> |
95 | | - <configuration> |
96 | | - <skip>true</skip> |
97 | | - </configuration> |
98 | | - </plugin> |
99 | | - <plugin> |
100 | | - <groupId>org.apache.maven.plugins</groupId> |
101 | | - <artifactId>maven-assembly-plugin</artifactId> |
102 | | - <executions> |
103 | | - <execution> |
104 | | - <phase>package</phase> |
105 | | - <goals> |
106 | | - <goal>single</goal> |
107 | | - </goals> |
108 | | - <configuration> |
109 | | - <archive> |
110 | | - <manifest> |
111 | | - <mainClass>io.kubernetes.client.examples.Example</mainClass> |
112 | | - </manifest> |
113 | | - </archive> |
114 | | - <descriptorRefs> |
115 | | - <descriptorRef>jar-with-dependencies</descriptorRef> |
116 | | - </descriptorRefs> |
117 | | - </configuration> |
118 | | - </execution> |
119 | | - </executions> |
120 | | - </plugin> |
121 | | - </plugins> |
122 | | - </build> |
| 29 | + <dependency> |
| 30 | + <groupId>io.kubernetes</groupId> |
| 31 | + <artifactId>client-java-api</artifactId> |
| 32 | + <version>${kubernetes.client.version}</version> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>io.kubernetes</groupId> |
| 36 | + <artifactId>client-java</artifactId> |
| 37 | + <version>${kubernetes.client.version}</version> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>io.kubernetes</groupId> |
| 41 | + <artifactId>client-java-extended</artifactId> |
| 42 | + <version>${kubernetes.client.version}</version> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>io.kubernetes</groupId> |
| 46 | + <artifactId>client-java-spring-integration</artifactId> |
| 47 | + <version>${kubernetes.client.version}</version> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>io.kubernetes</groupId> |
| 51 | + <artifactId>client-java-proto</artifactId> |
| 52 | + <version>${kubernetes.client.version}</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>commons-cli</groupId> |
| 56 | + <artifactId>commons-cli</artifactId> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>io.kubernetes</groupId> |
| 60 | + <artifactId>client-java-cert-manager-models</artifactId> |
| 61 | + <version>10.0.0</version> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>io.kubernetes</groupId> |
| 65 | + <artifactId>client-java-prometheus-operator-models</artifactId> |
| 66 | + <version>10.0.0</version> |
| 67 | + </dependency> |
| 68 | + <!-- test dependencies --> |
| 69 | + <dependency> |
| 70 | + <groupId>junit</groupId> |
| 71 | + <artifactId>junit</artifactId> |
| 72 | + <scope>test</scope> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>com.github.tomakehurst</groupId> |
| 76 | + <artifactId>wiremock</artifactId> |
| 77 | + <scope>test</scope> |
| 78 | + </dependency> |
| 79 | + </dependencies> |
| 80 | + <build> |
| 81 | + <plugins> |
| 82 | + <plugin> |
| 83 | + <groupId>org.apache.felix</groupId> |
| 84 | + <artifactId>maven-bundle-plugin</artifactId> |
| 85 | + <extensions>true</extensions> |
| 86 | + </plugin> |
| 87 | + <plugin> |
| 88 | + <groupId>org.apache.maven.plugins</groupId> |
| 89 | + <artifactId>maven-deploy-plugin</artifactId> |
| 90 | + <version>2.8.2</version> |
| 91 | + <configuration> |
| 92 | + <skip>true</skip> |
| 93 | + </configuration> |
| 94 | + </plugin> |
| 95 | + <plugin> |
| 96 | + <groupId>org.apache.maven.plugins</groupId> |
| 97 | + <artifactId>maven-assembly-plugin</artifactId> |
| 98 | + <executions> |
| 99 | + <execution> |
| 100 | + <phase>package</phase> |
| 101 | + <goals> |
| 102 | + <goal>single</goal> |
| 103 | + </goals> |
| 104 | + <configuration> |
| 105 | + <archive> |
| 106 | + <manifest> |
| 107 | + <mainClass>io.kubernetes.client.examples.Example</mainClass> |
| 108 | + </manifest> |
| 109 | + </archive> |
| 110 | + <descriptorRefs> |
| 111 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 112 | + </descriptorRefs> |
| 113 | + </configuration> |
| 114 | + </execution> |
| 115 | + </executions> |
| 116 | + </plugin> |
| 117 | + </plugins> |
| 118 | + </build> |
123 | 119 |
|
124 | 120 | </project> |
0 commit comments