|
203 | 203 | <plugin>
|
204 | 204 | <groupId>org.apache.maven.plugins</groupId>
|
205 | 205 | <artifactId>maven-site-plugin</artifactId>
|
206 |
| - <version>3.3</version> |
| 206 | + <version>3.4</version> |
207 | 207 | <inherited>true</inherited>
|
208 | 208 | <configuration>
|
209 | 209 | <locales>en</locales>
|
210 | 210 | <outputDirectory>target/site</outputDirectory>
|
211 | 211 | <outputEncoding>${encoding}</outputEncoding>
|
212 | 212 | <generateReports>true</generateReports>
|
213 | 213 | </configuration>
|
| 214 | + <dependencies> |
| 215 | + <dependency> |
| 216 | + <groupId>lt.velykis.maven.skins</groupId> |
| 217 | + <artifactId>reflow-velocity-tools</artifactId> |
| 218 | + <version>1.1.1</version> |
| 219 | + </dependency> |
| 220 | + <!-- Reflow skin requires Velocity >= 1.7 --> |
| 221 | + <dependency> |
| 222 | + <groupId>org.apache.velocity</groupId> |
| 223 | + <artifactId>velocity</artifactId> |
| 224 | + <version>1.7</version> |
| 225 | + </dependency> |
| 226 | + </dependencies> |
214 | 227 | </plugin>
|
215 | 228 |
|
216 | 229 | <!-- http://maven.apache.org/plugins/maven-dependency-plugin/usage.html -->
|
|
273 | 286 | <plugin>
|
274 | 287 | <groupId>org.apache.maven.plugins</groupId>
|
275 | 288 | <artifactId>maven-project-info-reports-plugin</artifactId>
|
276 |
| - <version>2.7</version> |
| 289 | + <version>2.8.1</version> |
277 | 290 | </plugin>
|
278 | 291 |
|
279 | 292 | <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId>
|
|
283 | 296 | <plugin>
|
284 | 297 | <groupId>org.apache.maven.plugins</groupId>
|
285 | 298 | <artifactId>maven-javadoc-plugin</artifactId>
|
286 |
| - <version>2.9.1</version> |
| 299 | + <version>2.10.3</version> |
287 | 300 | <configuration>
|
288 | 301 | <!-- <links> <link>http://java.sun.com/javase/6/docs/api/</link> <link>http://static.springframework.org/spring/docs/3.0.x/api/</link>
|
289 | 302 | <link>http://static.springframework.org/spring-webflow/docs/2.1.x/javadoc-api/</link>
|
|
304 | 317 | <plugin>
|
305 | 318 | <groupId>org.apache.maven.plugins</groupId>
|
306 | 319 | <artifactId>maven-checkstyle-plugin</artifactId>
|
307 |
| - <version>2.10</version> |
| 320 | + <version>2.17</version> |
308 | 321 | <configuration>
|
309 | 322 | <encoding>${encoding}</encoding>
|
310 | 323 | </configuration>
|
|
313 | 326 | <plugin>
|
314 | 327 | <groupId>org.codehaus.mojo</groupId>
|
315 | 328 | <artifactId>findbugs-maven-plugin</artifactId>
|
316 |
| - <version>2.5.2</version> |
| 329 | + <version>3.0.3</version> |
317 | 330 | <configuration>
|
318 | 331 | <onlyAnalyze>org.woehlke.*</onlyAnalyze>
|
319 | 332 | <omitVisitors>FindDeadLocalStores</omitVisitors>
|
|
327 | 340 | <plugin>
|
328 | 341 | <groupId>org.apache.maven.plugins</groupId>
|
329 | 342 | <artifactId>maven-jxr-plugin</artifactId>
|
330 |
| - <version>2.3</version> |
| 343 | + <version>2.5</version> |
331 | 344 | </plugin>
|
332 | 345 |
|
333 | 346 | <plugin>
|
334 | 347 | <groupId>org.apache.maven.plugins</groupId>
|
335 | 348 | <artifactId>maven-pmd-plugin</artifactId>
|
336 |
| - <version>3.0.1</version> |
| 349 | + <version>3.6</version> |
337 | 350 | <configuration>
|
338 | 351 | <sourceEncoding>${encoding}</sourceEncoding>
|
339 | 352 | <minimumTokens>100</minimumTokens>
|
340 |
| - <targetJdk>1.6</targetJdk> |
| 353 | + <targetJdk>1.8</targetJdk> |
341 | 354 | <excludeRoots>
|
342 | 355 | <excludeRoot>target</excludeRoot>
|
343 | 356 | </excludeRoots>
|
|
356 | 369 | <plugin>
|
357 | 370 | <groupId>org.apache.maven.plugins</groupId>
|
358 | 371 | <artifactId>maven-changes-plugin</artifactId>
|
359 |
| - <version>2.9</version> |
| 372 | + <version>2.11</version> |
360 | 373 | <configuration>
|
361 | 374 | <githubAPIScheme>https</githubAPIScheme>
|
362 | 375 | <githubAPIPort>443</githubAPIPort>
|
|
373 | 386 | <plugin>
|
374 | 387 | <groupId>org.apache.maven.plugins</groupId>
|
375 | 388 | <artifactId>maven-surefire-report-plugin</artifactId>
|
376 |
| - <version>2.15</version> |
| 389 | + <version>2.19.1</version> |
377 | 390 | </plugin>
|
378 | 391 |
|
379 | 392 | <plugin>
|
380 | 393 | <groupId>org.codehaus.mojo</groupId>
|
381 | 394 | <artifactId>cobertura-maven-plugin</artifactId>
|
382 |
| - <version>2.5.2</version> |
| 395 | + <version>2.7</version> |
383 | 396 | </plugin>
|
384 | 397 |
|
385 | 398 | </plugins>
|
|
0 commit comments