|
41 | 41 | <maven-release-plugin.version>3.1.1</maven-release-plugin.version> |
42 | 42 | <dependency-check-maven.version>12.1.0</dependency-check-maven.version> |
43 | 43 | <jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version> |
| 44 | + <findsecbugs-plugin.version>1.13.0</findsecbugs-plugin.version> |
44 | 45 | </properties> |
45 | 46 | <repositories> |
46 | 47 | <repository> |
|
152 | 153 | </executions> |
153 | 154 | </plugin> |
154 | 155 |
|
| 156 | + <plugin> |
| 157 | + <groupId>org.owasp</groupId> |
| 158 | + <artifactId>dependency-check-maven</artifactId> |
| 159 | + <version>${dependency-check-maven.version}</version> |
| 160 | + <configuration> |
| 161 | + <ossindexAnalyzerEnabled>false</ossindexAnalyzerEnabled> |
| 162 | + </configuration> |
| 163 | + <executions> |
| 164 | + <execution> |
| 165 | + <phase>package</phase> |
| 166 | + <goals> |
| 167 | + <goal>check</goal> |
| 168 | + </goals> |
| 169 | + </execution> |
| 170 | + </executions> |
| 171 | + </plugin> |
| 172 | + |
155 | 173 | <plugin> |
156 | 174 | <groupId>org.apache.maven.plugins</groupId> |
157 | 175 | <artifactId>maven-dependency-plugin</artifactId> |
|
174 | 192 | <groupId>com.github.spotbugs</groupId> |
175 | 193 | <artifactId>spotbugs-maven-plugin</artifactId> |
176 | 194 | <version>4.9.8.2</version> |
| 195 | + <dependencies> |
| 196 | + <dependency> |
| 197 | + <groupId>com.h3xstream.findsecbugs</groupId> |
| 198 | + <artifactId>findsecbugs-plugin</artifactId> |
| 199 | + <version>${findsecbugs-plugin.version}</version> |
| 200 | + </dependency> |
| 201 | + </dependencies> |
177 | 202 | <configuration> |
178 | 203 | <effort>Max</effort> |
179 | 204 | <threshold>High</threshold> |
180 | 205 | <xmlOutput>false</xmlOutput> |
181 | 206 | </configuration> |
182 | 207 | <executions> |
183 | 208 | <execution> |
| 209 | + <phase>package</phase> |
184 | 210 | <goals> |
185 | 211 | <goal>check</goal> |
186 | 212 | </goals> |
|
226 | 252 | <groupId>org.eclipse.emf</groupId> |
227 | 253 | <artifactId>org.eclipse.emf.common</artifactId> |
228 | 254 | </exclusion> |
| 255 | + <exclusion> |
| 256 | + <groupId>org.geotools.ogc</groupId> |
| 257 | + <artifactId>net.opengis.ows</artifactId> |
| 258 | + </exclusion> |
229 | 259 | </exclusions> |
230 | 260 | </dependency> |
231 | 261 |
|
|
254 | 284 | <groupId>commons-digester</groupId> |
255 | 285 | <artifactId>commons-digester</artifactId> |
256 | 286 | </exclusion> |
| 287 | + <exclusion> |
| 288 | + <groupId>commons-collections</groupId> |
| 289 | + <artifactId>commons-collections</artifactId> |
| 290 | + </exclusion> |
257 | 291 | </exclusions> |
258 | 292 | </dependency> |
259 | 293 | <!-- https://commons.apache.org/proper/commons-csv/ --> |
|
0 commit comments