|
22 | 22 | <groupId>org.hjug.refactorfirst.report</groupId> |
23 | 23 | <artifactId>report</artifactId> |
24 | 24 | </dependency> |
25 | | - <!-- Doxia --> |
26 | | - <!-- Needed since maven-reporting-impl brings in Struts 1.3.8 jars that have CVSS > 8 --> |
27 | | - <dependency> |
28 | | - <groupId>org.apache.maven.doxia</groupId> |
29 | | - <artifactId>doxia-sink-api</artifactId> |
30 | | - <version>2.0.0-M6</version> |
31 | | - </dependency> |
32 | | - <dependency> |
33 | | - <groupId>org.apache.maven.doxia</groupId> |
34 | | - <artifactId>doxia-decoration-model</artifactId> |
35 | | - <version>2.0.0-M6</version> |
36 | | - </dependency> |
37 | | - <dependency> |
38 | | - <groupId>org.apache.maven.doxia</groupId> |
39 | | - <artifactId>doxia-core</artifactId> |
40 | | - <version>2.0.0-M7</version> |
41 | | - </dependency> |
42 | | - <dependency> |
43 | | - <groupId>org.apache.maven.doxia</groupId> |
44 | | - <artifactId>doxia-site-renderer</artifactId> |
45 | | - <version>2.0.0-M11</version> |
46 | | - </dependency> |
47 | 25 |
|
48 | 26 | <!-- Maven Reporting --> |
49 | 27 | <dependency> |
|
52 | 30 | <version>${maven.core.version}</version> |
53 | 31 | </dependency> |
54 | 32 |
|
55 | | - <!-- Maven Reporting --> |
56 | 33 | <dependency> |
57 | 34 | <groupId>org.apache.maven.reporting</groupId> |
58 | 35 | <artifactId>maven-reporting-impl</artifactId> |
59 | | - <version>3.2.0</version> |
| 36 | + <version>4.0.0</version> |
| 37 | + <exclusions> |
| 38 | + <!-- Remediates xz-1.9.jar: CVE-2022-1271 --> |
| 39 | + <!-- Unused transitive dependency --> |
| 40 | + <exclusion> |
| 41 | + <groupId>org.tukaani</groupId> |
| 42 | + <artifactId>xz</artifactId> |
| 43 | + </exclusion> |
| 44 | + </exclusions> |
60 | 45 | </dependency> |
61 | 46 | <dependency> |
62 | 47 | <groupId>org.apache.maven.reporting</groupId> |
63 | 48 | <artifactId>maven-reporting-api</artifactId> |
64 | | - <version>3.1.1</version> |
| 49 | + <version>4.0.0</version> |
65 | 50 | </dependency> |
66 | 51 |
|
67 | 52 | <!-- plugin API and plugin-tools --> |
68 | 53 | <dependency> |
69 | 54 | <groupId>org.apache.maven</groupId> |
70 | 55 | <artifactId>maven-plugin-api</artifactId> |
71 | | - <version>3.5.2</version> |
| 56 | + <version>3.9.9</version> |
72 | 57 | </dependency> |
73 | 58 | <dependency> |
74 | 59 | <groupId>org.apache.maven.plugin-tools</groupId> |
75 | 60 | <artifactId>maven-plugin-annotations</artifactId> |
76 | | - <version>3.6.1</version> |
| 61 | + <version>3.15.1</version> |
77 | 62 | <scope>provided</scope> |
78 | 63 | </dependency> |
79 | | - <dependency> |
80 | | - <groupId>org.apache.maven.shared</groupId> |
81 | | - <artifactId>maven-shared-utils</artifactId> |
82 | | - <version>3.3.3</version> |
83 | | - </dependency> |
84 | 64 |
|
85 | 65 | <dependency> |
86 | 66 | <groupId>com.fasterxml.jackson.core</groupId> |
|
92 | 72 | <plugins> |
93 | 73 | <plugin> |
94 | 74 | <artifactId>maven-install-plugin</artifactId> |
95 | | - <version>2.5.2</version> |
| 75 | + <version>3.1.3</version> |
96 | 76 | </plugin> |
97 | 77 | <plugin> |
98 | 78 | <groupId>org.apache.maven.plugins</groupId> |
99 | 79 | <artifactId>maven-plugin-plugin</artifactId> |
100 | | - <version>3.9.0</version> |
| 80 | + <version>3.15.1</version> |
101 | 81 | <configuration> |
102 | 82 | <goalPrefix>refactor-first</goalPrefix> |
103 | 83 | </configuration> |
|
0 commit comments