|
41 | 41 | <java.level>8</java.level>
|
42 | 42 |
|
43 | 43 | <!-- dependency versions -->
|
44 |
| - <jenkins.version>2.60.3</jenkins.version> |
| 44 | + <jenkins.version>2.176.1</jenkins.version> |
45 | 45 |
|
46 |
| - <slf4j.version>1.7.25</slf4j.version> |
| 46 | + <slf4j.version>1.7.26</slf4j.version> |
47 | 47 |
|
48 | 48 | <!-- jenkins plugins versions -->
|
49 |
| - <jenkins-credentials.version>2.1.7</jenkins-credentials.version> |
50 |
| - <jenkins-plain-credentials.version>1.3</jenkins-plain-credentials.version> |
| 49 | + <jenkins-structs.version>1.19</jenkins-structs.version> |
51 | 50 |
|
52 | 51 | <!-- maven plugins versions -->
|
53 | 52 | <maven-coveralls.version>4.3.0</maven-coveralls.version>
|
54 | 53 | <maven-jacoco.version>0.8.1</maven-jacoco.version>
|
| 54 | + <kubernetes-client.version>4.3.0</kubernetes-client.version> |
55 | 55 |
|
56 | 56 | </properties>
|
57 | 57 |
|
58 | 58 | <dependencies>
|
| 59 | + <dependency> |
| 60 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 61 | + <artifactId>kubernetes-client-api</artifactId> |
| 62 | + <version>1.0.0</version> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 66 | + <artifactId>jackson2-api</artifactId> |
| 67 | + <version>2.9.9</version> |
| 68 | + </dependency> |
| 69 | + |
59 | 70 | <dependency>
|
60 | 71 | <groupId>org.jenkins-ci.plugins</groupId>
|
61 | 72 | <artifactId>apache-httpcomponents-client-4-api</artifactId>
|
|
73 | 84 | <dependency>
|
74 | 85 | <groupId>org.jenkins-ci.plugins</groupId>
|
75 | 86 | <artifactId>credentials</artifactId>
|
76 |
| - <version>${jenkins-credentials.version}</version> |
77 | 87 | </dependency>
|
78 | 88 | <!-- to use StringCredentialsImpl for tokens -->
|
79 | 89 | <dependency>
|
80 | 90 | <groupId>org.jenkins-ci.plugins</groupId>
|
81 | 91 | <artifactId>plain-credentials</artifactId>
|
82 |
| - <version>${jenkins-plain-credentials.version}</version> |
83 | 92 | </dependency>
|
| 93 | + <dependency> |
| 94 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 95 | + <artifactId>authentication-tokens</artifactId> |
| 96 | + <version>1.3</version> |
| 97 | + </dependency> |
| 98 | + <dependency> |
| 99 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 100 | + <artifactId>google-oauth-plugin</artifactId> |
| 101 | + <version>0.8</version> |
| 102 | + </dependency> |
| 103 | + <dependency> |
| 104 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 105 | + <artifactId>docker-commons</artifactId> |
| 106 | + <version>1.14</version> |
| 107 | + </dependency> |
| 108 | + |
84 | 109 | </dependencies>
|
85 | 110 |
|
86 | 111 | <!-- just to fix enforcer RequireUpperBoundDeps -->
|
87 | 112 | <dependencyManagement>
|
88 | 113 | <dependencies>
|
89 | 114 | <dependency>
|
90 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
91 |
| - <artifactId>structs</artifactId> |
92 |
| - <version>${jenkins-structs.version}</version> |
| 115 | + <groupId>io.jenkins.tools.bom</groupId> |
| 116 | + <artifactId>bom</artifactId> |
| 117 | + <version>2.176.2</version> |
| 118 | + <scope>import</scope> |
| 119 | + <type>pom</type> |
93 | 120 | </dependency>
|
94 | 121 | <dependency>
|
95 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
96 |
| - <artifactId>ssh-credentials</artifactId> |
97 |
| - <version>1.12</version> |
| 122 | + <groupId>commons-io</groupId> |
| 123 | + <artifactId>commons-io</artifactId> |
| 124 | + <version>2.6</version> |
98 | 125 | </dependency>
|
99 | 126 | </dependencies>
|
100 | 127 | </dependencyManagement>
|
|
0 commit comments