|
38 | 38 | <properties> |
39 | 39 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
40 | 40 | <javaVersion>8</javaVersion> |
41 | | - <javadoc.version>3.4.1</javadoc.version> |
| 41 | + <javadoc.version>3.5.0</javadoc.version> |
42 | 42 | </properties> |
43 | 43 |
|
44 | 44 | <dependencyManagement> |
45 | 45 | <dependencies> |
46 | 46 | <dependency> |
47 | 47 | <groupId>io.cucumber</groupId> |
48 | 48 | <artifactId>cucumber-bom</artifactId> |
49 | | - <version>7.11.2</version> |
| 49 | + <version>7.13.0</version> |
50 | 50 | <type>pom</type> |
51 | 51 | <scope>import</scope> |
52 | 52 | </dependency> |
53 | 53 | <dependency> |
54 | 54 | <groupId>org.junit</groupId> |
55 | 55 | <artifactId>junit-bom</artifactId> |
56 | | - <version>5.9.2</version> |
| 56 | + <version>5.10.0</version> |
57 | 57 | <type>pom</type> |
58 | 58 | <scope>import</scope> |
59 | 59 | </dependency> |
|
111 | 111 | <dependency><!-- override the version under cloudant-client --> |
112 | 112 | <groupId>commons-codec</groupId> |
113 | 113 | <artifactId>commons-codec</artifactId> |
114 | | - <version>1.15</version> |
| 114 | + <version>1.16.0</version> |
115 | 115 | </dependency> |
116 | 116 | <dependency> |
117 | 117 | <groupId>com.ibm.cloud</groupId> |
118 | 118 | <artifactId>cloudant</artifactId> |
119 | | - <version>0.5.0</version> |
| 119 | + <version>0.5.4</version> |
120 | 120 | </dependency> |
121 | 121 | </dependencies> |
122 | 122 |
|
|
126 | 126 | <plugins> |
127 | 127 | <plugin> |
128 | 128 | <artifactId>maven-clean-plugin</artifactId> |
129 | | - <version>3.2.0</version> |
| 129 | + <version>3.3.1</version> |
130 | 130 | </plugin> |
131 | 131 | <plugin> |
132 | 132 | <artifactId>maven-site-plugin</artifactId> |
133 | 133 | <version>3.12.1</version> |
134 | 134 | </plugin> |
135 | 135 | <plugin> |
136 | 136 | <artifactId>maven-project-info-reports-plugin</artifactId> |
137 | | - <version>3.4.1</version> |
| 137 | + <version>3.4.5</version> |
138 | 138 | </plugin> |
139 | 139 | <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> |
140 | 140 | <plugin> |
141 | 141 | <artifactId>maven-resources-plugin</artifactId> |
142 | | - <version>3.3.0</version> |
| 142 | + <version>3.3.1</version> |
143 | 143 | </plugin> |
144 | 144 | <plugin> |
145 | 145 | <artifactId>maven-compiler-plugin</artifactId> |
146 | | - <version>3.10.1</version> |
| 146 | + <version>3.11.0</version> |
147 | 147 | <configuration> |
148 | 148 | <source>${javaVersion}</source> |
149 | 149 | <target>${javaVersion}</target> |
|
160 | 160 | </plugin> |
161 | 161 | <plugin> |
162 | 162 | <artifactId>maven-surefire-plugin</artifactId> |
163 | | - <version>3.0.0-M7</version> |
| 163 | + <version>3.1.2</version> |
164 | 164 | <configuration> |
165 | 165 | <excludes> |
166 | 166 | <exclude>**/scenario/**</exclude> |
|
224 | 224 | </plugin> |
225 | 225 | <plugin> |
226 | 226 | <artifactId>maven-install-plugin</artifactId> |
227 | | - <version>3.0.1</version> |
| 227 | + <version>3.1.1</version> |
228 | 228 | </plugin> |
229 | 229 | <plugin> |
230 | 230 | <artifactId>maven-deploy-plugin</artifactId> |
231 | | - <version>3.0.0</version> |
| 231 | + <version>3.1.1</version> |
| 232 | + </plugin> |
| 233 | + <plugin> |
| 234 | + <groupId>org.apache.maven.plugins</groupId> |
| 235 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 236 | + <version>3.3.0</version> |
| 237 | + <executions> |
| 238 | + <execution> |
| 239 | + <id>enforce-version</id> |
| 240 | + <goals> |
| 241 | + <goal>enforce</goal> |
| 242 | + </goals> |
| 243 | + <configuration> |
| 244 | + <rules> |
| 245 | + <requireJavaVersion> |
| 246 | + <version>${javaVersion}</version> |
| 247 | + </requireJavaVersion> |
| 248 | + <requireMavenVersion> |
| 249 | + <version>3.2.5</version> |
| 250 | + </requireMavenVersion> |
| 251 | + </rules> |
| 252 | + </configuration> |
| 253 | + </execution> |
| 254 | + </executions> |
232 | 255 | </plugin> |
233 | 256 | </plugins> |
234 | 257 | </pluginManagement> |
|
265 | 288 | <plugin> |
266 | 289 | <groupId>org.apache.maven.plugins</groupId> |
267 | 290 | <artifactId>maven-source-plugin</artifactId> |
268 | | - <version>3.2.1</version> |
| 291 | + <version>3.3.0</version> |
269 | 292 | <executions> |
270 | 293 | <execution> |
271 | 294 | <id>attach-sources</id> |
|
306 | 329 | <plugin> |
307 | 330 | <groupId>org.apache.maven.plugins</groupId> |
308 | 331 | <artifactId>maven-checkstyle-plugin</artifactId> |
309 | | - <version>3.2.0</version> |
| 332 | + <version>3.3.0</version> |
310 | 333 | <configuration> |
311 | 334 | <configLocation>checkstyle.xml</configLocation> |
312 | 335 | <consoleOutput>true</consoleOutput> |
|
318 | 341 | <dependency> |
319 | 342 | <groupId>com.puppycrawl.tools</groupId> |
320 | 343 | <artifactId>checkstyle</artifactId> |
321 | | - <version>10.9.3</version> |
| 344 | + <version>10.12.2</version> |
322 | 345 | </dependency> |
323 | 346 | </dependencies> |
324 | 347 | <executions> |
|
341 | 364 | <plugin> |
342 | 365 | <groupId>org.owasp</groupId> |
343 | 366 | <artifactId>dependency-check-maven</artifactId> |
344 | | - <version>8.2.1</version> |
| 367 | + <version>8.3.1</version> |
345 | 368 | <configuration> |
346 | 369 | <skipProvidedScope>true</skipProvidedScope> |
347 | 370 | <skipTestScope>true</skipTestScope> |
|
377 | 400 | <plugins> |
378 | 401 | <plugin> |
379 | 402 | <artifactId>maven-assembly-plugin</artifactId> |
380 | | - <version>3.5.0</version> |
| 403 | + <version>3.6.0</version> |
381 | 404 | <configuration> |
382 | 405 | <descriptorRefs> |
383 | 406 | <descriptorRef>jar-with-dependencies</descriptorRef> |
|
395 | 418 | <plugin> |
396 | 419 | <groupId>org.apache.maven.plugins</groupId> |
397 | 420 | <artifactId>maven-gpg-plugin</artifactId> |
398 | | - <version>3.0.1</version> |
| 421 | + <version>3.1.0</version> |
399 | 422 | <executions> |
400 | 423 | <execution> |
401 | 424 | <id>sign-artifacts</id> |
|
0 commit comments