|
51 | 51 | <url>http://svn.apache.org/viewvc/commons/proper/codec/trunk</url> |
52 | 52 | </scm> |
53 | 53 |
|
| 54 | + <profiles> |
| 55 | + <!-- |
| 56 | + Use maven-site-plugin 2.x with Maven 2.x and maven-site-plugin 3.x with Maven 3.x |
| 57 | + See http://maven.apache.org/plugins/maven-site-plugin-3.0-beta-3/maven-3.html |
| 58 | + --> |
| 59 | + <profile> |
| 60 | + <id>maven-3</id> |
| 61 | + <activation> |
| 62 | + <file> |
| 63 | + <!-- The basedir expression is only recognized by Maven 3.x (see MNG-2363) --> |
| 64 | + <exists>${basedir}</exists> |
| 65 | + </file> |
| 66 | + </activation> |
| 67 | + <build> |
| 68 | + <pluginManagement> |
| 69 | + <plugins> |
| 70 | + <plugin> |
| 71 | + <groupId>org.apache.maven.plugins</groupId> |
| 72 | + <artifactId>maven-site-plugin</artifactId> |
| 73 | + <version>3.0-beta-3</version> |
| 74 | + </plugin> |
| 75 | + </plugins> |
| 76 | + </pluginManagement> |
| 77 | + <plugins> |
| 78 | + <plugin> |
| 79 | + <artifactId>maven-site-plugin</artifactId> |
| 80 | + <executions> |
| 81 | + <execution> |
| 82 | + <id>attach-descriptor</id> |
| 83 | + <goals> |
| 84 | + <goal>attach-descriptor</goal> |
| 85 | + </goals> |
| 86 | + </execution> |
| 87 | + </executions> |
| 88 | + </plugin> |
| 89 | + </plugins> |
| 90 | + </build> |
| 91 | + </profile> |
| 92 | + </profiles> |
| 93 | + |
54 | 94 | <developers> |
55 | 95 | <developer> |
56 | 96 | <name>Henri Yandell</name> |
|
237 | 277 | <plugin> |
238 | 278 | <groupId>org.apache.maven.plugins</groupId> |
239 | 279 | <artifactId>maven-checkstyle-plugin</artifactId> |
240 | | - <version>2.3</version> |
| 280 | + <version>2.6</version> |
241 | 281 | <configuration> |
242 | 282 | <configLocation>${basedir}/checkstyle.xml</configLocation> |
243 | 283 | <enableRulesSummary>false</enableRulesSummary> |
|
257 | 297 | <plugin> |
258 | 298 | <groupId>org.codehaus.mojo</groupId> |
259 | 299 | <artifactId>findbugs-maven-plugin</artifactId> |
260 | | - <version>2.0.1</version> |
| 300 | + <version>2.3.1</version> |
261 | 301 | </plugin> |
262 | 302 | <plugin> |
263 | 303 | <groupId>org.codehaus.mojo</groupId> |
264 | 304 | <artifactId>clirr-maven-plugin</artifactId> |
265 | 305 | <version>2.2.2</version> |
266 | 306 | <configuration> |
267 | | - <comparisonVersion>1.3</comparisonVersion> |
| 307 | + <comparisonVersion>1.4</comparisonVersion> |
268 | 308 | <minSeverity>info</minSeverity> |
269 | 309 | </configuration> |
270 | 310 | </plugin> |
271 | 311 | <plugin> |
272 | 312 | <groupId>org.apache.maven.plugins</groupId> |
273 | 313 | <artifactId>maven-javadoc-plugin</artifactId> |
274 | | - <version>2.5</version> |
| 314 | + <version>2.7</version> |
275 | 315 | <configuration> |
276 | 316 | <linksource>true</linksource> |
277 | 317 | <links> |
|
0 commit comments