|
7 | 7 |
|
8 | 8 | <groupId>io.github.albertus82</groupId> |
9 | 9 | <artifactId>jface-utils</artifactId> |
10 | | - <version>20.1.1-SNAPSHOT</version> |
| 10 | + <version>20.2.0-SNAPSHOT</version> |
11 | 11 | <name>JFaceUtils</name> |
12 | 12 | <url>https://github.com/albertus82/jface-utils</url> |
13 | 13 | <description>Java SWT/JFace Utility Library including a Preferences Framework, Lightweight HTTP Server and macOS support.</description> |
|
43 | 43 | <maven.compiler.showWarnings>true</maven.compiler.showWarnings> |
44 | 44 | <project.build.outputTimestamp>${git.commit.time}</project.build.outputTimestamp> |
45 | 45 | <maven.version.rules>${project.baseUri}maven-version-rules.xml</maven.version.rules> |
46 | | - <swt.version>3.125.0</swt.version> |
| 46 | + <swt.version>3.132.0</swt.version> |
47 | 47 | </properties> |
48 | 48 |
|
49 | 49 | <profiles> |
|
219 | 219 | <dependency> |
220 | 220 | <groupId>org.eclipse.platform</groupId> |
221 | 221 | <artifactId>org.eclipse.jface</artifactId> |
222 | | - <version>3.33.0</version> |
| 222 | + <version>3.38.100</version> |
223 | 223 | <exclusions> |
224 | 224 | <exclusion> |
225 | 225 | <groupId>org.eclipse.platform</groupId> |
|
230 | 230 | <dependency> |
231 | 231 | <groupId>org.eclipse.platform</groupId> |
232 | 232 | <artifactId>org.eclipse.core.commands</artifactId> |
233 | | - <version>3.12.0</version> |
| 233 | + <version>3.12.500</version> |
234 | 234 | </dependency> |
235 | 235 | <dependency> |
236 | 236 | <groupId>org.eclipse.platform</groupId> |
237 | 237 | <artifactId>org.eclipse.equinox.common</artifactId> |
238 | | - <version>3.19.0</version> |
| 238 | + <version>3.20.300</version> |
| 239 | + </dependency> |
| 240 | + <dependency> |
| 241 | + <groupId>org.eclipse.platform</groupId> |
| 242 | + <artifactId>org.eclipse.swt.svg</artifactId> |
| 243 | + <version>3.131.0</version> |
| 244 | + <scope>runtime</scope> |
239 | 245 | </dependency> |
240 | 246 | <dependency> |
241 | 247 | <groupId>com.google.code.findbugs</groupId> |
|
260 | 266 | <dependency> |
261 | 267 | <groupId>com.h2database</groupId> |
262 | 268 | <artifactId>h2</artifactId> |
263 | | - <version>2.2.224</version> |
| 269 | + <version>2.4.240</version> |
264 | 270 | <scope>test</scope> |
265 | 271 | </dependency> |
266 | 272 | <dependency> |
|
272 | 278 | <dependency> |
273 | 279 | <groupId>commons-io</groupId> |
274 | 280 | <artifactId>commons-io</artifactId> |
275 | | - <version>2.16.1</version> |
| 281 | + <version>2.21.0</version> |
276 | 282 | <scope>test</scope> |
277 | 283 | </dependency> |
278 | 284 | </dependencies> |
|
297 | 303 | <plugin> |
298 | 304 | <groupId>org.apache.maven.plugins</groupId> |
299 | 305 | <artifactId>maven-compiler-plugin</artifactId> |
300 | | - <version>3.13.0</version> |
| 306 | + <version>3.14.1</version> |
301 | 307 | <configuration> |
302 | 308 | <compilerArgument>-Xlint:all</compilerArgument> |
303 | 309 | </configuration> |
304 | 310 | </plugin> |
305 | 311 | <plugin> |
306 | 312 | <groupId>io.github.git-commit-id</groupId> |
307 | 313 | <artifactId>git-commit-id-maven-plugin</artifactId> |
308 | | - <version>8.0.2</version> |
| 314 | + <version>9.0.2</version> |
309 | 315 | <executions> |
310 | 316 | <execution> |
311 | 317 | <goals> |
|
323 | 329 | <plugin> |
324 | 330 | <groupId>org.apache.maven.plugins</groupId> |
325 | 331 | <artifactId>maven-enforcer-plugin</artifactId> |
326 | | - <version>3.4.1</version> |
| 332 | + <version>3.6.2</version> |
327 | 333 | <executions> |
328 | 334 | <execution> |
329 | 335 | <goals> |
|
353 | 359 | <plugin> |
354 | 360 | <groupId>org.apache.maven.plugins</groupId> |
355 | 361 | <artifactId>maven-resources-plugin</artifactId> |
356 | | - <version>3.3.1</version> |
| 362 | + <version>3.4.0</version> |
357 | 363 | <configuration> |
358 | 364 | <encoding>UTF-8</encoding> |
359 | 365 | <propertiesEncoding>UTF-8</propertiesEncoding> |
|
367 | 373 | <plugin> |
368 | 374 | <groupId>org.apache.maven.plugins</groupId> |
369 | 375 | <artifactId>maven-jar-plugin</artifactId> |
370 | | - <version>3.4.0</version> |
| 376 | + <version>3.5.0</version> |
371 | 377 | <configuration> |
372 | 378 | <archive> |
373 | 379 | <manifestEntries> |
|
386 | 392 | <plugin> |
387 | 393 | <groupId>org.apache.maven.plugins</groupId> |
388 | 394 | <artifactId>maven-source-plugin</artifactId> |
389 | | - <version>3.3.1</version> |
| 395 | + <version>3.4.0</version> |
390 | 396 | <executions> |
391 | 397 | <execution> |
392 | 398 | <id>attach-sources</id> |
|
400 | 406 | <plugin> |
401 | 407 | <groupId>org.apache.maven.plugins</groupId> |
402 | 408 | <artifactId>maven-javadoc-plugin</artifactId> |
403 | | - <version>3.6.3</version> |
| 409 | + <version>3.12.0</version> |
404 | 410 | <executions> |
405 | 411 | <execution> |
406 | 412 | <id>attach-javadocs</id> |
|
414 | 420 | <plugin> |
415 | 421 | <groupId>org.jacoco</groupId> |
416 | 422 | <artifactId>jacoco-maven-plugin</artifactId> |
417 | | - <version>0.8.12</version> |
| 423 | + <version>0.8.14</version> |
418 | 424 | <executions> |
419 | 425 | <execution> |
420 | 426 | <id>default-prepare-agent</id> |
|
434 | 440 | <plugin> |
435 | 441 | <groupId>org.apache.maven.plugins</groupId> |
436 | 442 | <artifactId>maven-antrun-plugin</artifactId> |
437 | | - <version>3.1.0</version> |
| 443 | + <version>3.2.0</version> |
438 | 444 | <executions> |
439 | 445 | <execution> |
440 | 446 | <phase>integration-test</phase> |
|
466 | 472 | <plugin> |
467 | 473 | <groupId>org.apache.maven.plugins</groupId> |
468 | 474 | <artifactId>maven-gpg-plugin</artifactId> |
469 | | - <version>3.2.3</version> |
| 475 | + <version>3.2.8</version> |
470 | 476 | <executions> |
471 | 477 | <execution> |
472 | 478 | <id>sign-artifacts</id> |
|
488 | 494 | <plugin> |
489 | 495 | <groupId>org.apache.maven.plugins</groupId> |
490 | 496 | <artifactId>maven-help-plugin</artifactId> |
491 | | - <version>3.4.0</version> |
| 497 | + <version>3.5.1</version> |
492 | 498 | <executions> |
493 | 499 | <execution> |
494 | 500 | <?m2e ignore?> |
|
503 | 509 | <plugin> |
504 | 510 | <groupId>org.codehaus.mojo</groupId> |
505 | 511 | <artifactId>versions-maven-plugin</artifactId> |
506 | | - <version>2.16.2</version> |
| 512 | + <version>2.20.1</version> |
507 | 513 | <executions> |
508 | 514 | <execution> |
509 | 515 | <phase>verify</phase> |
|
519 | 525 | <plugin> |
520 | 526 | <groupId>org.codehaus.mojo</groupId> |
521 | 527 | <artifactId>flatten-maven-plugin</artifactId> |
522 | | - <version>1.6.0</version> |
| 528 | + <version>1.7.3</version> |
523 | 529 | <configuration> |
524 | 530 | <flattenMode>ossrh</flattenMode> |
525 | 531 | <pomElements> |
|
551 | 557 | <plugin> |
552 | 558 | <groupId>org.apache.maven.plugins</groupId> |
553 | 559 | <artifactId>maven-surefire-plugin</artifactId> |
554 | | - <version>3.2.5</version> |
| 560 | + <version>3.5.4</version> |
| 561 | + </plugin> |
| 562 | + <plugin> |
| 563 | + <groupId>org.sonarsource.scanner.maven</groupId> |
| 564 | + <artifactId>sonar-maven-plugin</artifactId> |
| 565 | + <version>5.5.0.6356</version> |
555 | 566 | </plugin> |
556 | 567 | </plugins> |
557 | 568 | </pluginManagement> |
|
0 commit comments