|
65 | 65 | <cs.failsafe-plugin.version>2.21.0</cs.failsafe-plugin.version> |
66 | 66 | <cs.findbugs-plugin.version>3.0.5</cs.findbugs-plugin.version> |
67 | 67 | <cs.jar-plugin.version>3.1.0</cs.jar-plugin.version> |
| 68 | + <cs.owasp.dependency-checker-plugin.version>3.1.1</cs.owasp.dependency-checker-plugin.version> |
68 | 69 | <cs.pmd-plugin.version>3.9.0</cs.pmd-plugin.version> |
69 | 70 | <cs.project-info-plugin.version>2.9</cs.project-info-plugin.version> |
70 | 71 | <cs.release-plugin.version>2.5.3</cs.release-plugin.version> |
71 | 72 | <cs.resources-plugin.version>3.1.0</cs.resources-plugin.version> |
72 | 73 | <cs.site-plugin.version>3.7.1</cs.site-plugin.version> |
73 | 74 | <cs.surefire-plugin.version>2.21.0</cs.surefire-plugin.version> |
74 | 75 |
|
| 76 | + |
75 | 77 | <!-- Logging versions --> |
76 | 78 | <cs.log4j.version>1.2.17</cs.log4j.version> |
77 | 79 | <cs.log4j.extras.version>1.2.17</cs.log4j.extras.version> |
|
152 | 154 | <cs.neethi.version>2.0.4</cs.neethi.version> |
153 | 155 | <cs.nitro.version>10.1</cs.nitro.version> |
154 | 156 | <cs.opensaml.version>2.6.4</cs.opensaml.version> |
| 157 | + <cs.owasp.esapi.version>2.1.0.1</cs.owasp.esapi.version> |
155 | 158 | <cs.rados-java.version>0.2.0</cs.rados-java.version> |
156 | 159 | <cs.rampart.version>1.5.1</cs.rampart.version> |
157 | 160 | <cs.reflections.version>0.9.11</cs.reflections.version> |
|
577 | 580 | <dependency> |
578 | 581 | <groupId>org.owasp.esapi</groupId> |
579 | 582 | <artifactId>esapi</artifactId> |
580 | | - <version>2.1.0.1</version> |
| 583 | + <version>${cs.owasp.esapi.version}</version> |
581 | 584 | </dependency> |
582 | 585 | <!-- Test dependency in mysql for db tests --> |
583 | 586 | <dependency> |
|
717 | 720 | </execution> |
718 | 721 | </executions> |
719 | 722 | </plugin> |
| 723 | + <plugin> |
| 724 | + <groupId>org.owasp</groupId> |
| 725 | + <artifactId>dependency-check-maven</artifactId> |
| 726 | + <version>${cs.owasp.dependency-checker-plugin.version}</version> |
| 727 | + <configuration> |
| 728 | + <skipProvidedScope>true</skipProvidedScope> |
| 729 | + <skipRuntimeScope>true</skipRuntimeScope> |
| 730 | + </configuration> |
| 731 | + <executions> |
| 732 | + <execution> |
| 733 | + <goals> |
| 734 | + <goal>check</goal> |
| 735 | + </goals> |
| 736 | + </execution> |
| 737 | + </executions> |
| 738 | + </plugin> |
720 | 739 | </plugins> |
721 | 740 | <pluginManagement> |
722 | 741 | <plugins> |
|
1124 | 1143 | </build> |
1125 | 1144 | <reporting> |
1126 | 1145 | <plugins> |
| 1146 | + <plugin> |
| 1147 | + <groupId>org.owasp</groupId> |
| 1148 | + <artifactId>dependency-check-maven</artifactId> |
| 1149 | + <version>${cs.owasp.dependency-checker-plugin.version}</version> |
| 1150 | + <reportSets> |
| 1151 | + <reportSet> |
| 1152 | + <reports> |
| 1153 | + <report>aggregate</report> |
| 1154 | + </reports> |
| 1155 | + </reportSet> |
| 1156 | + </reportSets> |
| 1157 | + </plugin> |
1127 | 1158 | <plugin> |
1128 | 1159 | <groupId>org.codehaus.mojo</groupId> |
1129 | 1160 | <artifactId>findbugs-maven-plugin</artifactId> |
|
0 commit comments