|
136 | 136 |
|
137 | 137 | <properties> |
138 | 138 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
139 | | - <version.jmh>1.36</version.jmh> |
140 | | - <version.findsecbugs>1.12.0</version.findsecbugs> |
141 | | - <version.fluido>1.11.1</version.fluido> |
| 139 | + <version.jmh>1.36</version.jmh> |
| 140 | + <version.findsecbugs>2.0.0-M3</version.findsecbugs> |
| 141 | + <version.fluido>2.0.0-M3</version.fluido> |
142 | 142 | <version.powermock>2.0.9</version.powermock> |
143 | 143 | <version.spotbugs>4.7.3</version.spotbugs> |
144 | | - <version.spotbugs.maven>4.7.3.0</version.spotbugs.maven> |
| 144 | + <version.spotbugs.maven>4.7.3.2</version.spotbugs.maven> |
145 | 145 | <version.surefire>3.0.0-M9</version.surefire> |
146 | 146 | <project.java.target>1.8</project.java.target> |
147 | 147 | <!-- TODO: Be sure to update. Should be date of previous official release --> |
|
162 | 162 | <artifactId>javax.servlet.jsp-api</artifactId> |
163 | 163 | <version>2.3.3</version> |
164 | 164 | <scope>provided</scope> |
165 | | - <exclusions> |
| 165 | + <!-- Note: Because this dependency is provided, this exclusion doesn't actually do anything. |
| 166 | + But we include it so the convergence report will report 100% convergence. |
| 167 | + Deleting this does not cause the convergence check to fail. |
| 168 | + --> |
| 169 | + <exclusions> |
166 | 170 | <exclusion> |
167 | 171 | <groupId>javax.servlet</groupId> |
168 | 172 | <artifactId>javax.servlet-api</artifactId> |
|
186 | 190 | <groupId>xerces</groupId> |
187 | 191 | <artifactId>xercesImpl</artifactId> |
188 | 192 | </exclusion> |
189 | | - <exclusion> |
190 | | - <groupId>xml-apis</groupId> |
191 | | - <artifactId>xml-apis</artifactId> |
192 | | - </exclusion> |
193 | 193 | </exclusions> |
194 | 194 | </dependency> |
195 | 195 | <dependency> |
|
213 | 213 | <groupId>commons-logging</groupId> |
214 | 214 | <artifactId>commons-logging</artifactId> |
215 | 215 | </exclusion> |
| 216 | + <!-- Note: Because the following dependency is marked as provided to commons-configuration, |
| 217 | + this exclusion doesn't actually do anything. But we include it so the convergence report |
| 218 | + will report 100% convergence. Deleting this does not cause the convergence check to fail. |
| 219 | + --> |
216 | 220 | <exclusion> |
217 | 221 | <groupId>xml-apis</groupId> |
218 | 222 | <artifactId>xml-apis</artifactId> |
|
228 | 232 | <groupId>commons-fileupload</groupId> |
229 | 233 | <artifactId>commons-fileupload</artifactId> |
230 | 234 | <version>1.5</version> |
231 | | - <exclusions> |
232 | | - <!-- excluded because we directly import newer version. --> |
233 | | - <exclusion> |
234 | | - <groupId>commons-io</groupId> |
235 | | - <artifactId>commons-io</artifactId> |
236 | | - </exclusion> |
237 | | - </exclusions> |
238 | 235 | </dependency> |
239 | 236 | <dependency> |
240 | 237 | <groupId>org.apache.commons</groupId> |
|
250 | 247 | <groupId>org.owasp.antisamy</groupId> |
251 | 248 | <artifactId>antisamy</artifactId> |
252 | 249 | <version>1.7.2</version> |
| 250 | + <exclusions> |
| 251 | + <!-- excluded because we directly import newer version below. --> |
| 252 | + <exclusion> |
| 253 | + <groupId>org.slf4j</groupId> |
| 254 | + <artifactId>slf4j-api</artifactId> |
| 255 | + </exclusion> |
| 256 | + </exclusions> |
253 | 257 | </dependency> |
254 | 258 | <dependency> |
255 | 259 | <groupId>org.slf4j</groupId> |
256 | 260 | <artifactId>slf4j-api</artifactId> |
257 | | - <version>2.0.4</version> |
| 261 | + <version>2.0.6</version> |
258 | 262 | </dependency> |
259 | 263 | <dependency> |
260 | 264 | <groupId>xml-apis</groupId> |
|
483 | 487 | <plugin> |
484 | 488 | <groupId>org.apache.maven.plugins</groupId> |
485 | 489 | <artifactId>maven-compiler-plugin</artifactId> |
486 | | - <version>3.10.1</version> |
| 490 | + <version>3.11.0</version> |
487 | 491 | <configuration> |
488 | 492 | <source>${project.java.target}</source> |
489 | 493 | <target>${project.java.target}</target> |
|
544 | 548 | <artifactId>animal-sniffer-enforcer-rule</artifactId> |
545 | 549 | <version>1.22</version> |
546 | 550 | </dependency> |
547 | | - |
548 | 551 | </dependencies> |
| 552 | + |
549 | 553 | <executions> |
550 | 554 | <execution> |
551 | 555 | <id>enforce-maven</id> |
552 | | - <goals> |
553 | | - <goal>enforce</goal> |
554 | | - </goals> |
| 556 | + <goals><goal>enforce</goal></goals> |
555 | 557 | <configuration> |
556 | 558 | <rules> |
557 | 559 | <requireMavenVersion> |
|
575 | 577 | JAVA_HOME environment variable is pointed to a JDK1.8 or later distribution. |
576 | 578 | </message> |
577 | 579 | </requireJavaVersion> |
578 | | - <enforceBytecodeVersion> |
| 580 | + <enforceBytecodeVersion> |
579 | 581 | <maxJdkVersion>${project.java.target}</maxJdkVersion> |
580 | 582 | <ignoreOptionals>true</ignoreOptionals> |
581 | 583 | <ignoredScopes/><!-- 'test' scopes not ignored so we can actually test on Java 8. --> |
|
681 | 683 | </plugin> |
682 | 684 |
|
683 | 685 | <plugin> |
684 | | - <!-- Note: This uses the maven-fluido-skin version specified next. The skin is referenced in src/site/site.xml. --> |
| 686 | + <!-- Note: This uses the maven-fluido-skin version specified next. |
| 687 | + The skin is referenced in src/site/site.xml. --> |
685 | 688 | <groupId>org.apache.maven.plugins</groupId> |
686 | 689 | <artifactId>maven-site-plugin</artifactId> |
687 | | - <version>4.0.0-M3</version> |
| 690 | + <version>4.0.0-M5</version> |
688 | 691 | <dependencies> |
689 | 692 | <dependency> |
690 | 693 | <groupId>org.apache.maven.skins</groupId> |
|
745 | 748 | <plugin> |
746 | 749 | <groupId>org.owasp</groupId> |
747 | 750 | <artifactId>dependency-check-maven</artifactId> |
748 | | - <version>8.1.0</version> |
| 751 | + <version>8.1.2</version> |
749 | 752 | <configuration> |
750 | 753 | <failBuildOnCVSS>1.0</failBuildOnCVSS> |
751 | 754 | <suppressionFiles>./suppressions.xml</suppressionFiles> |
|
764 | 767 |
|
765 | 768 | <reporting> |
766 | 769 | <plugins> |
767 | | - <plugin> |
768 | | - <groupId>io.github.weblegacy</groupId> |
| 770 | + <plugin> |
| 771 | + <groupId>io.github.weblegacy</groupId> |
769 | 772 | <artifactId>taglib-maven-plugin</artifactId> |
770 | 773 | </plugin> |
771 | 774 | <plugin> |
|
0 commit comments