Skip to content

Commit 3c5f784

Browse files
committed
Updated versions
1 parent fa6f69d commit 3c5f784

File tree

1 file changed

+59
-20
lines changed

1 file changed

+59
-20
lines changed

pom.xml

Lines changed: 59 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,15 @@ limitations under the License.
221221
<role>Developer</role>
222222
</roles>
223223
</developer>
224+
<developer>
225+
<name>Kristian Rosenvold</name>
226+
<id>krosenvold</id>
227+
<email>krosenvold@apache.org</email>
228+
<roles>
229+
<role>Developer</role>
230+
</roles>
231+
</developer>
232+
224233
</developers>
225234

226235
<mailingLists>
@@ -300,11 +309,22 @@ limitations under the License.
300309
<plexusDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/plexus-snapshots</plexusDistMgmtSnapshotsUrl>
301310
</properties>
302311

312+
<dependencyManagement>
313+
<dependencies>
314+
<dependency>
315+
<groupId>org.codehaus.plexus</groupId>
316+
<artifactId>plexus-component-annotations</artifactId>
317+
<version>1.5.6</version>
318+
<scope>compile</scope>
319+
</dependency>
320+
</dependencies>
321+
</dependencyManagement>
322+
303323
<dependencies>
304324
<dependency>
305325
<groupId>junit</groupId>
306326
<artifactId>junit</artifactId>
307-
<version>3.8.2</version>
327+
<version>4.11</version>
308328
<scope>test</scope>
309329
</dependency>
310330
</dependencies>
@@ -330,36 +350,36 @@ limitations under the License.
330350
<plugin>
331351
<groupId>org.apache.maven.plugins</groupId>
332352
<artifactId>maven-deploy-plugin</artifactId>
333-
<version>2.7</version>
353+
<version>2.8.2</version>
334354
</plugin>
335355
<plugin>
336356
<groupId>org.apache.maven.plugins</groupId>
337357
<artifactId>maven-gpg-plugin</artifactId>
338-
<version>1.4</version>
358+
<version>1.5</version>
339359
</plugin>
340360
<plugin>
341361
<groupId>org.apache.maven.plugins</groupId>
342362
<artifactId>maven-install-plugin</artifactId>
343-
<version>2.4</version>
363+
<version>2.5.2</version>
344364
</plugin>
345365
<plugin>
346366
<groupId>org.apache.maven.plugins</groupId>
347367
<artifactId>maven-jar-plugin</artifactId>
348-
<version>2.4</version>
368+
<version>2.5</version>
349369
</plugin>
350370
<plugin>
351371
<groupId>org.apache.maven.plugins</groupId>
352372
<artifactId>maven-javadoc-plugin</artifactId>
353-
<version>2.9</version>
373+
<version>2.10.1</version>
354374
</plugin>
355375
<plugin>
356376
<groupId>org.apache.maven.plugins</groupId>
357377
<artifactId>maven-plugin-plugin</artifactId>
358-
<version>3.2</version>
378+
<version>3.3</version>
359379
</plugin>
360380
<plugin>
361381
<artifactId>maven-release-plugin</artifactId>
362-
<version>2.3.2</version>
382+
<version>2.5.1</version>
363383
<configuration>
364384
<goals>deploy</goals>
365385
<useReleaseProfile>false</useReleaseProfile>
@@ -369,17 +389,17 @@ limitations under the License.
369389
<plugin>
370390
<groupId>org.apache.maven.plugins</groupId>
371391
<artifactId>maven-resources-plugin</artifactId>
372-
<version>2.6</version>
392+
<version>2.7</version>
373393
</plugin>
374394
<plugin>
375395
<groupId>org.apache.maven.plugins</groupId>
376396
<artifactId>maven-site-plugin</artifactId>
377-
<version>3.2</version>
397+
<version>3.4</version>
378398
<dependencies>
379399
<dependency>
380400
<groupId>org.apache.maven.wagon</groupId>
381401
<artifactId>wagon-webdav-jackrabbit</artifactId>
382-
<version>2.2</version>
402+
<version>2.7</version>
383403
</dependency>
384404
<dependency>
385405
<groupId>org.slf4j</groupId>
@@ -396,12 +416,31 @@ limitations under the License.
396416
<plugin>
397417
<groupId>org.apache.maven.plugins</groupId>
398418
<artifactId>maven-source-plugin</artifactId>
399-
<version>2.2.1</version>
419+
<version>2.4</version>
400420
</plugin>
401421
<plugin>
402422
<groupId>org.apache.maven.plugins</groupId>
403423
<artifactId>maven-surefire-plugin</artifactId>
404-
<version>2.14</version>
424+
<version>2.17</version>
425+
</plugin>
426+
<plugin>
427+
<groupId>org.codehaus.plexus</groupId>
428+
<artifactId>plexus-component-metadata</artifactId>
429+
<version>1.5.6</version>
430+
<executions>
431+
<execution>
432+
<id>process-classes</id>
433+
<goals>
434+
<goal>generate-metadata</goal>
435+
</goals>
436+
</execution>
437+
<execution>
438+
<id>process-test-classes</id>
439+
<goals>
440+
<goal>generate-test-metadata</goal>
441+
</goals>
442+
</execution>
443+
</executions>
405444
</plugin>
406445
</plugins>
407446
</pluginManagement>
@@ -412,7 +451,7 @@ limitations under the License.
412451
<plugin>
413452
<groupId>org.apache.maven.plugins</groupId>
414453
<artifactId>maven-project-info-reports-plugin</artifactId>
415-
<version>2.6</version>
454+
<version>2.7</version>
416455
<reportSets>
417456
<reportSet>
418457
<reports>
@@ -474,12 +513,12 @@ limitations under the License.
474513
<plugin>
475514
<groupId>org.apache.maven.plugins</groupId>
476515
<artifactId>maven-surefire-report-plugin</artifactId>
477-
<version>2.12.4</version>
516+
<version>2.17</version>
478517
</plugin>
479518
<plugin>
480519
<groupId>org.apache.maven.plugins</groupId>
481520
<artifactId>maven-checkstyle-plugin</artifactId>
482-
<version>2.9.1</version>
521+
<version>2.13</version>
483522
<configuration>
484523
<configLocation>config/maven_checks.xml</configLocation>
485524
<headerLocation>https://raw.github.com/sonatype/plexus-pom/master/src/main/resources/config/plexus-header.txt</headerLocation>
@@ -496,7 +535,7 @@ limitations under the License.
496535
<plugin>
497536
<groupId>org.apache.maven.plugins</groupId>
498537
<artifactId>maven-pmd-plugin</artifactId>
499-
<version>2.7.1</version>
538+
<version>3.2</version>
500539
<configuration>
501540
<targetJdk>1.5</targetJdk>
502541
<rulesets>
@@ -521,7 +560,7 @@ limitations under the License.
521560
<plugin>
522561
<groupId>org.apache.maven.plugins</groupId>
523562
<artifactId>maven-jxr-plugin</artifactId>
524-
<version>2.3</version>
563+
<version>2.4</version>
525564
<reportSets>
526565
<reportSet>
527566
<id>default</id>
@@ -535,7 +574,7 @@ limitations under the License.
535574
<plugin>
536575
<groupId>org.apache.maven.plugins</groupId>
537576
<artifactId>maven-javadoc-plugin</artifactId>
538-
<version>2.9</version>
577+
<version>2.10.1</version>
539578
<configuration>
540579
<detectLinks>true</detectLinks>
541580
<links>
@@ -555,7 +594,7 @@ limitations under the License.
555594
<plugin>
556595
<groupId>org.codehaus.mojo</groupId>
557596
<artifactId>cobertura-maven-plugin</artifactId>
558-
<version>2.5.2</version>
597+
<version>2.6</version>
559598
</plugin>
560599
</plugins>
561600
</reporting>

0 commit comments

Comments
 (0)