|
4 | 4 | <parent>
|
5 | 5 | <groupId>org.jenkins-ci.plugins</groupId>
|
6 | 6 | <artifactId>plugin</artifactId>
|
7 |
| - <version>4.46</version> |
| 7 | + <version>4.88</version> |
8 | 8 | <relativePath />
|
9 | 9 | </parent>
|
10 | 10 | <groupId>com.datapipe.jenkins.plugins</groupId>
|
|
13 | 13 | <packaging>hpi</packaging>
|
14 | 14 | <properties>
|
15 | 15 | <changelist>9999-SNAPSHOT</changelist>
|
16 |
| - <jenkins.version>2.303.3</jenkins.version> |
| 16 | + <jenkins.version>2.452.4</jenkins.version> |
17 | 17 | <hpi.compatibleSinceVersion>2.0.0</hpi.compatibleSinceVersion>
|
18 | 18 | <gitHubRepo>jenkinsci/${project.artifactId}</gitHubRepo>
|
19 | 19 | </properties>
|
|
76 | 76 | <plugin>
|
77 | 77 | <groupId>org.apache.maven.plugins</groupId>
|
78 | 78 | <artifactId>maven-checkstyle-plugin</artifactId>
|
79 |
| - <version>3.1.2</version> |
| 79 | + <version>3.5.0</version> |
80 | 80 | <dependencies>
|
81 | 81 | <dependency>
|
82 | 82 | <groupId>com.puppycrawl.tools</groupId>
|
83 | 83 | <artifactId>checkstyle</artifactId>
|
84 |
| - <version>8.31</version> |
| 84 | + <version>10.18.1</version> |
85 | 85 | </dependency>
|
86 | 86 | </dependencies>
|
87 | 87 | </plugin>
|
|
117 | 117 | <artifactId>structs</artifactId>
|
118 | 118 | </dependency>
|
119 | 119 | <dependency>
|
120 |
| - <groupId>com.bettercloud</groupId> |
| 120 | + <groupId>io.github.jopenlibs</groupId> |
121 | 121 | <artifactId>vault-java-driver</artifactId>
|
122 |
| - <version>5.1.0</version> |
| 122 | + <version>6.2.0</version> |
123 | 123 | </dependency>
|
124 | 124 | <dependency>
|
125 | 125 | <groupId>org.jenkins-ci.plugins</groupId>
|
|
145 | 145 | <dependency>
|
146 | 146 | <groupId>org.jenkins-ci.plugins.aws-java-sdk</groupId>
|
147 | 147 | <artifactId>aws-java-sdk-minimal</artifactId>
|
148 |
| - <version>1.12.246-349.v96b_b_f7eb_a_c3c</version> |
149 | 148 | <optional>true</optional>
|
150 | 149 | </dependency>
|
151 | 150 | <!-- Test Dependencies -->
|
|
157 | 156 | <dependency>
|
158 | 157 | <groupId>org.testcontainers</groupId>
|
159 | 158 | <artifactId>vault</artifactId>
|
160 |
| - <version>1.15.2</version> |
| 159 | + <version>1.20.1</version> |
161 | 160 | <scope>test</scope>
|
162 | 161 | <exclusions>
|
163 | 162 | <exclusion>
|
|
175 | 174 | <artifactId>mockito-core</artifactId>
|
176 | 175 | <scope>test</scope>
|
177 | 176 | </dependency>
|
178 |
| - <dependency> |
179 |
| - <groupId>org.mockito</groupId> |
180 |
| - <artifactId>mockito-inline</artifactId> |
181 |
| - <scope>test</scope> |
182 |
| - </dependency> |
183 | 177 | <dependency>
|
184 | 178 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
185 | 179 | <artifactId>workflow-job</artifactId>
|
|
220 | 214 | <dependencies>
|
221 | 215 | <dependency>
|
222 | 216 | <groupId>io.jenkins.tools.bom</groupId>
|
223 |
| - <artifactId>bom-2.303.x</artifactId> |
224 |
| - <version>1500.ve4d05cd32975</version> |
| 217 | + <artifactId>bom-2.452.x</artifactId> |
| 218 | + <version>3387.v0f2773fa_3200</version> |
225 | 219 | <scope>import</scope>
|
226 | 220 | <type>pom</type>
|
227 | 221 | </dependency>
|
228 | 222 | </dependencies>
|
229 | 223 | </dependencyManagement>
|
| 224 | + <profiles> |
| 225 | + <profile> |
| 226 | + <id>jdk17</id> |
| 227 | + <activation> |
| 228 | + <jdk>[17,)</jdk> |
| 229 | + </activation> |
| 230 | + <properties /> |
| 231 | + <build> |
| 232 | + <pluginManagement> |
| 233 | + <plugins> |
| 234 | + <plugin> |
| 235 | + <groupId>org.apache.maven.plugins</groupId> |
| 236 | + <artifactId>maven-surefire-plugin</artifactId> |
| 237 | + <configuration> |
| 238 | + <argLine>-Xms768M -Xmx768M -XX:+HeapDumpOnOutOfMemoryError -XX:+TieredCompilation -XX:TieredStopAtLevel=1 @{jenkins.addOpens} @{jenkins.insaneHook} |
| 239 | + --add-opens java.base/java.util.concurrent=ALL-UNNAMED |
| 240 | + --add-opens java.base/java.util.concurrent.locks=ALL-UNNAMED</argLine> |
| 241 | + </configuration> |
| 242 | + </plugin> |
| 243 | + </plugins> |
| 244 | + </pluginManagement> |
| 245 | + </build> |
| 246 | + </profile> |
| 247 | + </profiles> |
230 | 248 | </project>
|
0 commit comments