|
3 | 3 | <groupId>org.owasp.antisamy</groupId>
|
4 | 4 | <artifactId>antisamy</artifactId>
|
5 | 5 | <packaging>jar</packaging>
|
6 |
| - <version>1.5.13</version> |
7 |
| - |
| 6 | + <version>1.6.0</version> |
8 | 7 | <distributionManagement>
|
9 | 8 | <snapshotRepository>
|
10 | 9 | <id>ossrh</id>
|
|
43 | 42 |
|
44 | 43 | <properties>
|
45 | 44 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
| 45 | + <project.build.outputTimestamp>2021-05-03T17:04:00Z</project.build.outputTimestamp> |
46 | 46 | <gpg.skip>true</gpg.skip><!-- by default skip gpg -->
|
47 | 47 | <version.spotbugs.maven>4.2.0</version.spotbugs.maven>
|
48 |
| - <version.spotbugs>4.2.0</version.spotbugs> |
| 48 | + <version.spotbugs>4.2.2</version.spotbugs> |
49 | 49 | </properties>
|
50 | 50 |
|
51 | 51 | <profiles>
|
|
59 | 59 |
|
60 | 60 | <dependencies>
|
61 | 61 | <dependency>
|
62 |
| - <groupId>xml-apis</groupId> |
63 |
| - <artifactId>xml-apis</artifactId> |
64 |
| - <!-- Note that there is a 2.0.2 version of this, but it is actually much older than 1.4.01. --> |
65 |
| - <version>1.4.01</version> |
66 |
| - </dependency> |
67 |
| - <dependency> |
68 |
| - <groupId>org.apache.xmlgraphics</groupId> |
69 |
| - <artifactId>batik-css</artifactId> |
70 |
| - <version>1.13</version> |
71 |
| - <exclusions> |
72 |
| - <!-- exclude this as batik-css has a dependency that uses an older commons-logging and we want to eliminate the convergence mismatch --> |
73 |
| - <exclusion> |
74 |
| - <groupId>commons-logging</groupId> |
75 |
| - <artifactId>commons-logging</artifactId> |
76 |
| - </exclusion> |
77 |
| - </exclusions> |
| 62 | + <groupId>commons-codec</groupId> |
| 63 | + <artifactId>commons-codec</artifactId> |
| 64 | + <version>1.15</version> |
78 | 65 | </dependency>
|
79 | 66 | <dependency>
|
80 | 67 | <groupId>net.sourceforge.nekohtml</groupId>
|
|
100 | 87 | </exclusion>
|
101 | 88 | </exclusions>
|
102 | 89 | </dependency>
|
| 90 | + <dependency> |
| 91 | + <groupId>org.apache.logging.log4j</groupId> |
| 92 | + <artifactId>log4j-slf4j-impl</artifactId> |
| 93 | + <!-- 2.12.1 is the last release that supports Java 7, so we can't upgrade to newer versions. --> |
| 94 | + <version>2.12.1</version> |
| 95 | + <exclusions> |
| 96 | + <!-- exclude this as we've imported a newer version directly and want to eliminate the convergence mismatch --> |
| 97 | + <exclusion> |
| 98 | + <groupId>org.slf4j</groupId> |
| 99 | + <artifactId>slf4j-api</artifactId> |
| 100 | + </exclusion> |
| 101 | + </exclusions> |
| 102 | + </dependency> |
| 103 | + <dependency> |
| 104 | + <groupId>org.apache.xmlgraphics</groupId> |
| 105 | + <artifactId>batik-css</artifactId> |
| 106 | + <version>1.14</version> |
| 107 | + <exclusions> |
| 108 | + <!-- exclude this as batik-css has a dependency that uses an older commons-logging and we want to eliminate the convergence mismatch --> |
| 109 | + <exclusion> |
| 110 | + <groupId>commons-logging</groupId> |
| 111 | + <artifactId>commons-logging</artifactId> |
| 112 | + </exclusion> |
| 113 | + </exclusions> |
| 114 | + </dependency> |
| 115 | + <dependency> |
| 116 | + <groupId>org.slf4j</groupId> |
| 117 | + <artifactId>slf4j-api</artifactId> |
| 118 | + <version>1.7.30</version> |
| 119 | + </dependency> |
| 120 | + <!-- While Java 7+ includes Xerces in the JRE, it apparently doesn't provide all the features we use |
| 121 | + that are in the Apache version. So we import it directly. --> |
103 | 122 | <dependency>
|
104 | 123 | <groupId>xerces</groupId>
|
105 | 124 | <artifactId>xercesImpl</artifactId>
|
106 | 125 | <version>2.12.1</version>
|
107 | 126 | </dependency>
|
108 | 127 | <dependency>
|
109 |
| - <groupId>commons-codec</groupId> |
110 |
| - <artifactId>commons-codec</artifactId> |
111 |
| - <version>1.15</version> |
| 128 | + <groupId>xml-apis</groupId> |
| 129 | + <artifactId>xml-apis</artifactId> |
| 130 | + <!-- Note that there is a 2.0.2 version of this, but it is actually much older than 1.4.01. --> |
| 131 | + <version>1.4.01</version> |
112 | 132 | </dependency>
|
113 | 133 |
|
114 | 134 | <!-- SpotBugs dependencies -->
|
|
129 | 149 | <dependency>
|
130 | 150 | <groupId>junit</groupId>
|
131 | 151 | <artifactId>junit</artifactId>
|
132 |
| - <version>4.13.1</version> |
| 152 | + <version>4.13.2</version> |
133 | 153 | <scope>test</scope>
|
134 | 154 | </dependency>
|
135 | 155 |
|
136 | 156 | </dependencies>
|
137 | 157 |
|
138 | 158 | <build>
|
| 159 | + |
139 | 160 | <pluginManagement>
|
140 | 161 | <plugins>
|
| 162 | + <plugin> |
| 163 | + <groupId>org.apache.maven.plugins</groupId> |
| 164 | + <artifactId>maven-assembly-plugin</artifactId> |
| 165 | + <version>3.3.0</version> |
| 166 | + </plugin> |
141 | 167 | <plugin>
|
142 | 168 | <groupId>org.apache.maven.plugins</groupId>
|
143 | 169 | <artifactId>maven-dependency-plugin</artifactId>
|
144 | 170 | <version>3.1.2</version>
|
145 | 171 | </plugin>
|
| 172 | + <plugin> |
| 173 | + <groupId>org.apache.maven.plugins</groupId> |
| 174 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 175 | + <version>3.2.0</version> |
| 176 | + <configuration> |
| 177 | + <!-- supports reproducibility of generated Javadocs --> |
| 178 | + <notimestamp>true</notimestamp> |
| 179 | + </configuration> |
| 180 | + </plugin> |
146 | 181 | <plugin>
|
147 | 182 | <groupId>org.apache.maven.plugins</groupId>
|
148 | 183 | <artifactId>maven-release-plugin</artifactId>
|
149 | 184 | <version>3.0.0-M1</version>
|
150 | 185 | </plugin>
|
151 | 186 | </plugins>
|
152 | 187 | </pluginManagement>
|
| 188 | + |
153 | 189 | <plugins>
|
154 | 190 | <plugin>
|
155 | 191 | <groupId>org.apache.maven.plugins</groupId>
|
|
249 | 285 | <plugin>
|
250 | 286 | <groupId>org.apache.maven.plugins</groupId>
|
251 | 287 | <artifactId>maven-javadoc-plugin</artifactId>
|
252 |
| - <version>3.2.0</version> |
253 | 288 | <executions>
|
254 | 289 | <execution>
|
255 | 290 | <id>attach-javadocs</id>
|
|
285 | 320 | <artifactId>maven-surefire-plugin</artifactId>
|
286 | 321 | <version>3.0.0-M5</version>
|
287 | 322 | </plugin>
|
| 323 | + <plugin> |
| 324 | + <groupId>org.cyclonedx</groupId> |
| 325 | + <artifactId>cyclonedx-maven-plugin</artifactId> |
| 326 | + <version>2.3.0</version> |
| 327 | + </plugin> |
288 | 328 | <plugin>
|
289 | 329 | <groupId>com.github.spotbugs</groupId>
|
290 | 330 | <artifactId>spotbugs-maven-plugin</artifactId>
|
|
0 commit comments