|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion>
|
4 | 5 |
|
5 | 6 | <groupId>com.flickr4java</groupId>
|
|
11 | 12 | <url>https://github.com/boncey/Flickr4Java</url>
|
12 | 13 |
|
13 | 14 | <developers>
|
14 |
| - <developer> |
15 |
| - <id>boncey</id> |
16 |
| - <name>Darren Greaves</name> |
17 |
| - <roles> |
18 |
| - <role>developer</role> |
19 |
| - </roles> |
20 |
| - </developer> |
21 |
| - <developer> |
22 |
| - <id>callmeal</id> |
23 |
| - <name>Allan</name> |
24 |
| - <roles> |
25 |
| - <role>developer</role> |
26 |
| - </roles> |
27 |
| - </developer> |
| 15 | + <developer> |
| 16 | + <id>boncey</id> |
| 17 | + <name>Darren Greaves</name> |
| 18 | + <roles> |
| 19 | + <role>developer</role> |
| 20 | + </roles> |
| 21 | + </developer> |
| 22 | + <developer> |
| 23 | + <id>callmeal</id> |
| 24 | + <name>Allan</name> |
| 25 | + <roles> |
| 26 | + <role>developer</role> |
| 27 | + </roles> |
| 28 | + </developer> |
28 | 29 | </developers>
|
29 | 30 |
|
30 | 31 | <licenses>
|
|
37 | 38 |
|
38 | 39 | <properties>
|
39 | 40 | <javaVersion>1.8</javaVersion>
|
40 |
| - <junitVersion>4.13.1</junitVersion> |
41 |
| - <slf4j.version>1.7.30</slf4j.version> |
42 |
| - <scribe.version>6.9.0</scribe.version> |
| 41 | + <junitVersion>4.13.2</junitVersion> |
| 42 | + <slf4j.version>2.0.5</slf4j.version> |
| 43 | + <scribe.version>8.3.3</scribe.version> |
| 44 | + <dependency.check.suppression.file>config/dependencyCheckSuppression.xml</dependency.check.suppression.file> |
| 45 | + <dependency.check.version>8.2.1</dependency.check.version> |
| 46 | + |
43 | 47 | </properties>
|
44 | 48 |
|
45 | 49 | <dependencies>
|
|
133 | 137 | <goal>jar</goal>
|
134 | 138 | </goals>
|
135 | 139 | <configuration>
|
136 |
| - <additionalparam>-Xdoclint:none</additionalparam> |
| 140 | + <additionalOptions>-Xdoclint:none</additionalOptions> |
137 | 141 | </configuration>
|
138 | 142 | </execution>
|
139 | 143 | </executions>
|
|
182 | 186 | </executions>
|
183 | 187 | </plugin>
|
184 | 188 | <plugin>
|
| 189 | + <groupId>org.apache.maven.plugins</groupId> |
185 | 190 | <artifactId>maven-javadoc-plugin</artifactId>
|
| 191 | + <version>3.2.0</version> |
| 192 | + <configuration> |
| 193 | + <source>8</source> |
| 194 | + </configuration> |
186 | 195 | <executions>
|
187 | 196 | <execution>
|
188 | 197 | <id>attach-javadocs</id>
|
189 | 198 | <goals>
|
190 | 199 | <goal>jar</goal>
|
191 | 200 | </goals>
|
| 201 | + <configuration> |
| 202 | + <additionalOptions>-Xdoclint:none</additionalOptions> |
| 203 | + </configuration> |
192 | 204 | </execution>
|
193 | 205 | </executions>
|
194 | 206 | </plugin>
|
|
233 | 245 | </plugins>
|
234 | 246 | </build>
|
235 | 247 | </profile>
|
| 248 | + <profile> |
| 249 | + <id>dependency-check</id> |
| 250 | + <activation> |
| 251 | + <activeByDefault>false</activeByDefault> |
| 252 | + </activation> |
| 253 | + <build> |
| 254 | + <plugins> |
| 255 | + <plugin> |
| 256 | + <groupId>org.owasp</groupId> |
| 257 | + <artifactId>dependency-check-maven</artifactId> |
| 258 | + <version>${dependency.check.version}</version> |
| 259 | + <configuration> |
| 260 | + <suppressionFile>${dependency.check.suppression.file}</suppressionFile> |
| 261 | + <failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability> |
| 262 | + </configuration> |
| 263 | + <executions> |
| 264 | + <execution> |
| 265 | + <phase>package</phase> |
| 266 | + <goals> |
| 267 | + <goal>check</goal> |
| 268 | + </goals> |
| 269 | + </execution> |
| 270 | + </executions> |
| 271 | + </plugin> |
| 272 | + </plugins> |
| 273 | + </build> |
| 274 | + </profile> |
236 | 275 | </profiles>
|
237 | 276 | <reporting>
|
238 | 277 | <plugins>
|
|
0 commit comments