|
153 | 153 | <jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version>
|
154 | 154 | <sonar-maven-plugin.version>3.10.0.2594</sonar-maven-plugin.version>
|
155 | 155 | <findbugs-annotations.version>1.3.9-1</findbugs-annotations.version>
|
156 |
| - <maven-owasp-plugin.version>10.0.2</maven-owasp-plugin.version> |
| 156 | + <maven-owasp-plugin.version>12.1.0</maven-owasp-plugin.version> |
157 | 157 | <os.maven.version>1.7.1</os.maven.version>
|
158 | 158 | <jasmine-maven-plugin.version>2.2</jasmine-maven-plugin.version>
|
159 | 159 | <lifecycle-mapping.version>1.0.0</lifecycle-mapping.version>
|
160 | 160 | <maven-bundle-plugin.version>5.1.9</maven-bundle-plugin.version>
|
161 | 161 | <exec-maven-plugin.version>3.1.1</exec-maven-plugin.version>
|
162 | 162 | <maven-checkstyle-plugin.version>3.3.0</maven-checkstyle-plugin.version>
|
163 | 163 | <maven-shade-plugin.version>3.6.0</maven-shade-plugin.version>
|
| 164 | + <!-- This overrides the property in the ASF parent project--> |
| 165 | + <version.maven-site-plugin>3.21.0</version.maven-site-plugin> |
164 | 166 | <mvel2.version>2.5.2.Final</mvel2.version>
|
165 | 167 |
|
166 | 168 | <!-- Plugin options -->
|
|
2291 | 2293 | @{jacocoArgLine}</argLine>
|
2292 | 2294 | </properties>
|
2293 | 2295 | </profile>
|
| 2296 | + <profile> |
| 2297 | + <activation> |
| 2298 | + <jdk>[11,)</jdk> |
| 2299 | + </activation> |
| 2300 | + <reporting> |
| 2301 | + <plugins> |
| 2302 | + <plugin> |
| 2303 | + <groupId>org.owasp</groupId> |
| 2304 | + <artifactId>dependency-check-maven</artifactId> |
| 2305 | + <version>${maven-owasp-plugin.version}</version> |
| 2306 | + <configuration> |
| 2307 | + <skipProvidedScope>true</skipProvidedScope> |
| 2308 | + <skipRuntimeScope>true</skipRuntimeScope> |
| 2309 | + <skipSystemScope>true</skipSystemScope> |
| 2310 | + </configuration> |
| 2311 | + <reportSets> |
| 2312 | + <reportSet> |
| 2313 | + <reports> |
| 2314 | + <report>aggregate</report> |
| 2315 | + </reports> |
| 2316 | + </reportSet> |
| 2317 | + </reportSets> |
| 2318 | + </plugin> |
| 2319 | + </plugins> |
| 2320 | + </reporting> |
| 2321 | + </profile> |
2294 | 2322 | </profiles>
|
2295 | 2323 | <reporting>
|
2296 | 2324 | <plugins>
|
2297 | 2325 | <plugin>
|
2298 | 2326 | <groupId>com.github.spotbugs</groupId>
|
2299 | 2327 | <artifactId>spotbugs-maven-plugin</artifactId>
|
2300 | 2328 | </plugin>
|
2301 |
| - <plugin> |
2302 |
| - <groupId>org.owasp</groupId> |
2303 |
| - <artifactId>dependency-check-maven</artifactId> |
2304 |
| - <version>${maven-owasp-plugin.version}</version> |
2305 |
| - <configuration> |
2306 |
| - <skipProvidedScope>true</skipProvidedScope> |
2307 |
| - <skipRuntimeScope>true</skipRuntimeScope> |
2308 |
| - <skipSystemScope>true</skipSystemScope> |
2309 |
| - </configuration> |
2310 |
| - <reportSets> |
2311 |
| - <reportSet> |
2312 |
| - <reports> |
2313 |
| - <report>aggregate</report> |
2314 |
| - </reports> |
2315 |
| - </reportSet> |
2316 |
| - </reportSets> |
2317 |
| - </plugin> |
2318 | 2329 | <plugin>
|
2319 | 2330 | <groupId>org.jacoco</groupId>
|
2320 | 2331 | <artifactId>jacoco-maven-plugin</artifactId>
|
|
0 commit comments