|
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 | | - <groupId>io.kubernetes</groupId> |
5 | | - <artifactId>client-java-examples-release-11</artifactId> |
6 | | - <name>client-java-examples-release-11</name> |
7 | | - <version>1.0.0</version> |
| 4 | + <parent> |
| 5 | + <groupId>io.kubernetes</groupId> |
| 6 | + <artifactId>client-java-examples-parent</artifactId> |
| 7 | + <version>12.0.0-SNAPSHOT</version> |
| 8 | + <relativePath>..</relativePath> |
| 9 | + </parent> |
| 10 | + |
| 11 | + <artifactId>client-java-examples-release-11</artifactId> |
| 12 | + <name>client-java-examples-release-11</name> |
| 13 | + <version>12.0.0-SNAPSHOT</version> |
8 | 14 | <properties> |
9 | | - <kubernetes.client.version>11.0.0</kubernetes.client.version> |
10 | 15 | <java.version>1.8</java.version> |
11 | 16 | <maven.compiler.source>${java.version}</maven.compiler.source> |
12 | 17 | <maven.compiler.target>${java.version}</maven.compiler.target> |
13 | | - <junit.version>4.13.1</junit.version> |
14 | | - <spring.boot.version>2.4.1</spring.boot.version> |
| 18 | + <junit.version>4.13.1</junit.version> |
| 19 | + <spring.boot.version>2.4.1</spring.boot.version> |
15 | 20 | </properties> |
16 | 21 |
|
17 | | - <dependencies> |
| 22 | + <dependencies> |
18 | 23 | <dependency> |
19 | 24 | <groupId>io.prometheus</groupId> |
20 | 25 | <artifactId>simpleclient</artifactId> |
|
25 | 30 | <artifactId>simpleclient_httpserver</artifactId> |
26 | 31 | <version>0.9.0</version> |
27 | 32 | </dependency> |
28 | | - <dependency> |
29 | | - <groupId>io.kubernetes</groupId> |
30 | | - <artifactId>client-java-api</artifactId> |
31 | | - <version>${kubernetes.client.version}</version> |
32 | | - </dependency> |
33 | | - <dependency> |
34 | | - <groupId>io.kubernetes</groupId> |
35 | | - <artifactId>client-java</artifactId> |
36 | | - <version>${kubernetes.client.version}</version> |
37 | | - </dependency> |
38 | | - <dependency> |
39 | | - <groupId>io.kubernetes</groupId> |
40 | | - <artifactId>client-java-extended</artifactId> |
41 | | - <version>${kubernetes.client.version}</version> |
42 | | - </dependency> |
43 | | - <dependency> |
44 | | - <groupId>io.kubernetes</groupId> |
45 | | - <artifactId>client-java-spring-integration</artifactId> |
46 | | - <version>${kubernetes.client.version}</version> |
47 | | - </dependency> |
48 | | - <dependency> |
49 | | - <groupId>io.kubernetes</groupId> |
50 | | - <artifactId>client-java-proto</artifactId> |
51 | | - <version>${kubernetes.client.version}</version> |
52 | | - </dependency> |
53 | | - <dependency> |
54 | | - <groupId>commons-cli</groupId> |
55 | | - <artifactId>commons-cli</artifactId> |
56 | | - <version>1.4</version> |
57 | | - </dependency> |
58 | | - <dependency> |
59 | | - <groupId>io.kubernetes</groupId> |
60 | | - <artifactId>client-java-cert-manager-models</artifactId> |
61 | | - <version>10.0.1</version> |
62 | | - </dependency> |
63 | | - <dependency> |
64 | | - <groupId>io.kubernetes</groupId> |
65 | | - <artifactId>client-java-prometheus-operator-models</artifactId> |
66 | | - <version>10.0.1</version> |
67 | | - </dependency> |
68 | | - <!-- test dependencies --> |
69 | | - <dependency> |
70 | | - <groupId>junit</groupId> |
71 | | - <artifactId>junit</artifactId> |
72 | | - <version>${junit.version}</version> |
73 | | - <scope>test</scope> |
74 | | - </dependency> |
75 | | - <dependency> |
76 | | - <groupId>com.github.tomakehurst</groupId> |
77 | | - <artifactId>wiremock</artifactId> |
| 33 | + <dependency> |
| 34 | + <groupId>io.kubernetes</groupId> |
| 35 | + <artifactId>client-java-api</artifactId> |
| 36 | + <version>11.0.0</version> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>io.kubernetes</groupId> |
| 40 | + <artifactId>client-java</artifactId> |
| 41 | + <version>11.0.0</version> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>io.kubernetes</groupId> |
| 45 | + <artifactId>client-java-extended</artifactId> |
| 46 | + <version>11.0.0</version> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>io.kubernetes</groupId> |
| 50 | + <artifactId>client-java-spring-integration</artifactId> |
| 51 | + <version>11.0.0</version> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>io.kubernetes</groupId> |
| 55 | + <artifactId>client-java-proto</artifactId> |
| 56 | + <version>11.0.0</version> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>commons-cli</groupId> |
| 60 | + <artifactId>commons-cli</artifactId> |
| 61 | + <version>1.4</version> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>io.kubernetes</groupId> |
| 65 | + <artifactId>client-java-cert-manager-models</artifactId> |
| 66 | + <version>10.0.1</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>io.kubernetes</groupId> |
| 70 | + <artifactId>client-java-prometheus-operator-models</artifactId> |
| 71 | + <version>10.0.1</version> |
| 72 | + </dependency> |
| 73 | + <!-- test dependencies --> |
| 74 | + <dependency> |
| 75 | + <groupId>junit</groupId> |
| 76 | + <artifactId>junit</artifactId> |
| 77 | + <version>${junit.version}</version> |
| 78 | + <scope>test</scope> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>com.github.tomakehurst</groupId> |
| 82 | + <artifactId>wiremock</artifactId> |
78 | 83 | <version>2.27.2</version> |
79 | | - <scope>test</scope> |
80 | | - </dependency> |
81 | | - <!--for spring controller example--> |
82 | | - <dependency> |
83 | | - <groupId>org.springframework.boot</groupId> |
84 | | - <artifactId>spring-boot-starter-web</artifactId> |
85 | | - <version>${spring.boot.version}</version> |
86 | | - </dependency> |
87 | | - <dependency> |
88 | | - <groupId>org.springframework.boot</groupId> |
89 | | - <artifactId>spring-boot-starter-actuator</artifactId> |
90 | | - <version>${spring.boot.version}</version> |
91 | | - </dependency> |
| 84 | + <scope>test</scope> |
| 85 | + </dependency> |
| 86 | + <!--for spring controller example--> |
| 87 | + <dependency> |
| 88 | + <groupId>org.springframework.boot</groupId> |
| 89 | + <artifactId>spring-boot-starter-web</artifactId> |
| 90 | + <version>${spring.boot.version}</version> |
| 91 | + </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>org.springframework.boot</groupId> |
| 94 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 95 | + <version>${spring.boot.version}</version> |
| 96 | + </dependency> |
92 | 97 |
|
93 | | - </dependencies> |
| 98 | + </dependencies> |
94 | 99 |
|
95 | 100 |
|
96 | 101 | </project> |
0 commit comments