Skip to content

Commit f1362ef

Browse files
committed
[Build] Bump the versions of the maven plugins.
1 parent 0945162 commit f1362ef

File tree

6 files changed

+17
-16
lines changed

6 files changed

+17
-16
lines changed

examples/clojure_cukes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<plugin>
2626
<groupId>com.theoryinpractise</groupId>
2727
<artifactId>clojure-maven-plugin</artifactId>
28-
<version>1.3.23</version>
28+
<version>1.8.1</version>
2929
<extensions>true</extensions>
3030
<configuration>
3131
<sourceDirectories>

examples/groovy-calculator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<plugin>
4949
<groupId>org.codehaus.gmaven</groupId>
5050
<artifactId>gmaven-plugin</artifactId>
51-
<version>1.4</version>
51+
<version>1.5</version>
5252
<executions>
5353
<execution>
5454
<goals>

examples/java-wicket/java-wicket-test/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<plugin>
1313
<groupId>org.apache.maven.plugins</groupId>
1414
<artifactId>maven-failsafe-plugin</artifactId>
15-
<version>2.16</version>
15+
<version>2.20</version>
1616
<executions>
1717
<execution>
1818
<id>integration-test</id>
@@ -33,7 +33,8 @@
3333
<plugin>
3434
<groupId>org.codehaus.cargo</groupId>
3535
<artifactId>cargo-maven2-plugin</artifactId>
36-
<version>1.4.3</version>
36+
<!-- Newer versions makes the example project fail -->
37+
<version>1.4.4</version>
3738
<executions>
3839
<execution>
3940
<id>start-servlet-engine</id>

java8/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ GherkinDialectProvider.DIALECTS.keySet().each { language ->
9191
<plugin>
9292
<groupId>org.apache.maven.plugins</groupId>
9393
<artifactId>maven-compiler-plugin</artifactId>
94-
<version>3.1</version>
94+
<version>3.6.2</version>
9595
<configuration>
9696
<fork>true</fork>
9797
<encoding>UTF-8</encoding>

kotlin-java8/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Cucumber-JVM: Kotlin Java8</name>
1313

1414
<properties>
15-
<kotlin.version>1.1.2-2</kotlin.version>
15+
<kotlin.version>1.1.4-2</kotlin.version>
1616
</properties>
1717

1818
<dependencies>

pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<properties>
2121
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2222
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
23-
<minimum.maven.version>3.1.1</minimum.maven.version>
23+
<minimum.maven.version>3.3</minimum.maven.version>
2424
<outputDirectory>${project.build.directory}</outputDirectory>
2525
<gherkin.version>4.1.3</gherkin.version>
2626
<groovy.version>2.4.7</groovy.version>
@@ -739,7 +739,7 @@
739739
<plugin>
740740
<groupId>org.apache.maven.plugins</groupId>
741741
<artifactId>maven-compiler-plugin</artifactId>
742-
<version>3.6.1</version>
742+
<version>3.6.2</version>
743743
<configuration>
744744
<encoding>UTF-8</encoding>
745745
<source>1.6</source>
@@ -757,7 +757,7 @@
757757
<plugin>
758758
<groupId>org.apache.maven.plugins</groupId>
759759
<artifactId>maven-javadoc-plugin</artifactId>
760-
<version>2.10.4</version>
760+
<version>3.0.0-M1</version>
761761
<configuration>
762762
<aggregate>true</aggregate>
763763
<use>false</use>
@@ -802,7 +802,7 @@
802802
<plugin>
803803
<groupId>org.apache.maven.plugins</groupId>
804804
<artifactId>maven-shade-plugin</artifactId>
805-
<version>2.4.3</version>
805+
<version>3.0.0</version>
806806
<executions>
807807
<execution>
808808
<phase>package</phase>
@@ -819,13 +819,13 @@
819819
<plugin>
820820
<groupId>org.apache.maven.plugins</groupId>
821821
<artifactId>maven-site-plugin</artifactId>
822-
<version>3.5.1</version>
822+
<version>3.6</version>
823823
</plugin>
824824

825825
<plugin>
826826
<groupId>org.apache.maven.plugins</groupId>
827827
<artifactId>maven-resources-plugin</artifactId>
828-
<version>3.0.1</version>
828+
<version>3.0.2</version>
829829
</plugin>
830830

831831
<plugin>
@@ -845,7 +845,7 @@
845845
<plugin>
846846
<groupId>org.apache.maven.plugins</groupId>
847847
<artifactId>maven-surefire-plugin</artifactId>
848-
<version>2.19.1</version>
848+
<version>2.20</version>
849849
<configuration>
850850
<argLine>-Duser.language=en</argLine>
851851
<argLine>-Xmx1024m</argLine>
@@ -877,7 +877,7 @@
877877
<plugin>
878878
<groupId>org.codehaus.mojo</groupId>
879879
<artifactId>build-helper-maven-plugin</artifactId>
880-
<version>1.12</version>
880+
<version>3.0.0</version>
881881
</plugin>
882882

883883
<plugin>
@@ -898,12 +898,12 @@
898898
<plugin>
899899
<groupId>org.apache.maven.plugins</groupId>
900900
<artifactId>maven-enforcer-plugin</artifactId>
901-
<version>1.4.1</version>
901+
<version>3.0.0-M1</version>
902902
</plugin>
903903
<plugin>
904904
<groupId>org.apache.felix</groupId>
905905
<artifactId>maven-bundle-plugin</artifactId>
906-
<version>3.2.0</version>
906+
<version>3.3.0</version>
907907
<extensions>true</extensions>
908908
<executions>
909909
<execution>

0 commit comments

Comments
 (0)