|
5 | 5 |
|
6 | 6 | <groupId>org.htmlunit</groupId> |
7 | 7 | <artifactId>htmlunit-jsoup</artifactId> |
8 | | - <version>4.17.0</version> |
| 8 | + <version>4.18.0</version> |
9 | 9 |
|
10 | 10 | <name>HtmlUnit jsoup support</name> |
11 | 11 | <organization> |
|
27 | 27 | <maven.compiler.target>8</maven.compiler.target> |
28 | 28 |
|
29 | 29 | <jsoup.version>1.21.2</jsoup.version> |
30 | | - <htmlunit.version>4.17.0</htmlunit.version> |
| 30 | + <htmlunit.version>4.18.0</htmlunit.version> |
31 | 31 |
|
32 | 32 | <!-- examples dependencies --> |
33 | 33 | <flexmark.version>0.64.8</flexmark.version> |
|
36 | 36 | <junit.version>5.14.0</junit.version> |
37 | 37 | <junit-launcher.version>1.14.0</junit-launcher.version> |
38 | 38 |
|
39 | | - <checkstyle.version>11.1.0</checkstyle.version> |
40 | | - <spotbugs.version>4.9.6</spotbugs.version> |
41 | | - <pmd.version>7.17.0</pmd.version> |
| 39 | + <checkstyle.version>12.1.1</checkstyle.version> |
| 40 | + <spotbugs.version>4.9.8</spotbugs.version> |
| 41 | + <pmd.version>7.18.0</pmd.version> |
42 | 42 | <dependencycheck.version>10.0.4</dependencycheck.version> |
43 | 43 |
|
44 | 44 | <!-- plugins --> |
45 | 45 | <central-publishing.version>0.9.0</central-publishing.version> |
46 | | - <spotbugs-plugin.version>4.9.6.0</spotbugs-plugin.version> |
| 46 | + <spotbugs-plugin.version>4.9.8.1</spotbugs-plugin.version> |
47 | 47 | <enforcer-plugin.version>3.6.2</enforcer-plugin.version> |
48 | 48 | <gpg-plugin.version>3.2.8</gpg-plugin.version> |
49 | | - <pmd-plugin.version>3.27.0</pmd-plugin.version> |
| 49 | + <pmd-plugin.version>3.28.0</pmd-plugin.version> |
50 | 50 | <compiler-plugin.version>3.14.1</compiler-plugin.version> |
51 | 51 | <javadoc-plugin.version>3.12.0</javadoc-plugin.version> |
52 | 52 | <surefire-plugin.version>3.5.4</surefire-plugin.version> |
| 53 | + <cyclonedx-plugin.version>2.9.1</cyclonedx-plugin.version> |
53 | 54 | </properties> |
54 | 55 |
|
55 | 56 | <dependencies> |
|
310 | 311 | </execution> |
311 | 312 | </executions> |
312 | 313 | </plugin> |
| 314 | + <plugin> |
| 315 | + <groupId>org.cyclonedx</groupId> |
| 316 | + <artifactId>cyclonedx-maven-plugin</artifactId> |
| 317 | + <version>${cyclonedx-plugin.version}</version> |
| 318 | + <executions> |
| 319 | + <execution> |
| 320 | + <phase>package</phase> |
| 321 | + <goals> |
| 322 | + <goal>makeAggregateBom</goal> |
| 323 | + </goals> |
| 324 | + </execution> |
| 325 | + </executions> |
| 326 | + <configuration> |
| 327 | + <projectType>library</projectType> |
| 328 | + <outputFormat>json</outputFormat> |
| 329 | + <!-- strange but it helps --> |
| 330 | + <skipNotDeployed>false</skipNotDeployed> |
| 331 | + </configuration> |
| 332 | + </plugin> |
313 | 333 | </plugins> |
314 | 334 | </build> |
315 | 335 |
|
|
0 commit comments