|
217 | 217 | <dependency> |
218 | 218 | <groupId>commons-fileupload</groupId> |
219 | 219 | <artifactId>commons-fileupload</artifactId> |
220 | | - <!-- Upgrading to 1.4 causes this test case failure: [ERROR] HTTPUtilitiesTest.testGetFileUploads:259. TODO: Figure out why, and fix. --> |
221 | 220 | <version>1.4</version> |
222 | 221 | <exclusions> |
223 | 222 | <!-- excluded because we directly import newer version. --> |
|
235 | 234 | <dependency> |
236 | 235 | <groupId>org.apache.commons</groupId> |
237 | 236 | <artifactId>commons-collections4</artifactId> |
238 | | - <!-- Using 4.2 because 4.3 requires Java 8. Trying to make sure ESAPI supports Java 7+ --> |
239 | 237 | <version>4.4</version> |
240 | 238 | </dependency> |
241 | 239 | <dependency> |
|
287 | 285 | <dependency> |
288 | 286 | <groupId>commons-io</groupId> |
289 | 287 | <artifactId>commons-io</artifactId> |
290 | | - <!-- Note: commons-io:2.7 and later require Java 8, so can't upgrade past 2.6 --> |
291 | | - <!-- This means still possible exposure to CVE-2021-29425. --> |
292 | 288 | <version>2.11.0</version> |
293 | 289 | </dependency> |
294 | 290 |
|
|
748 | 744 | <artifactId>jdepend-maven-plugin</artifactId> |
749 | 745 | <version>2.0</version> |
750 | 746 | </plugin> |
751 | | - |
752 | | - <plugin> |
753 | | - <groupId>org.codehaus.mojo</groupId> |
754 | | - <artifactId>versions-maven-plugin</artifactId> |
755 | | - <version>2.8.1</version> |
756 | | - </plugin> |
757 | | - |
758 | 747 | <plugin> |
759 | 748 | <groupId>org.eluder.coveralls</groupId> |
760 | 749 | <artifactId>coveralls-maven-plugin</artifactId> |
|
771 | 760 | </configuration> |
772 | 761 | <executions> |
773 | 762 | <execution> |
774 | | - <!-- This version of Dep Ck requires Java 8. So only run it if using Java 8 or greater. |
775 | | - This property set in a profile below. --> |
776 | | - <phase>${PhaseIfJava8plus}</phase> |
777 | 763 | <goals> |
778 | 764 | <goal>check</goal> |
779 | 765 | </goals> |
|
875 | 861 | </reporting> |
876 | 862 |
|
877 | 863 | <profiles> |
878 | | - <profile> |
879 | | - <id>Java8plus</id> |
880 | | - <activation> |
881 | | - <jdk>[1.8,)</jdk> |
882 | | - </activation> |
883 | | - <properties> |
884 | | - <PhaseIfJava8plus>site</PhaseIfJava8plus> |
885 | | - </properties> |
886 | | - |
887 | | - <reporting> |
888 | | - <plugins> |
889 | | - |
890 | | - <!-- Run SpotBugs with the FindSecBugs plugin and include results in site report. |
891 | | - Is put in this profile as SpotBugs requires Java 8+ --> |
892 | | - <plugin> |
893 | | - <groupId>com.github.spotbugs</groupId> |
894 | | - <artifactId>spotbugs-maven-plugin</artifactId> |
895 | | - <configuration> |
896 | | - <plugins> |
897 | | - <plugin> |
898 | | - <groupId>com.h3xstream.findsecbugs</groupId> |
899 | | - <artifactId>findsecbugs-plugin</artifactId> |
900 | | - <version>1.10.1</version> |
901 | | - </plugin> |
902 | | - </plugins> |
903 | | - <effort>Max</effort> |
904 | | - <relaxed>false</relaxed> |
905 | | - </configuration> |
906 | | - </plugin> |
907 | | - </plugins> |
908 | | - </reporting> |
909 | | - |
910 | | - </profile> |
911 | | - |
912 | | - <profile> |
| 864 | + <profile> |
913 | 865 | <!-- Activate to sign jars and build distributable download. --> |
914 | 866 | <id>dist</id> |
915 | 867 |
|
|
0 commit comments