Skip to content

Commit af03661

Browse files
committed
[maven-release-plugin] prepare release v5.6.0
1 parent 84976e0 commit af03661

File tree

6 files changed

+312
-313
lines changed

6 files changed

+312
-313
lines changed

examples/pom.xml

Lines changed: 85 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,85 @@
1-
<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/xsd/maven-4.0.0.xsd">
2-
<modelVersion>4.0.0</modelVersion>
3-
4-
<parent>
5-
<groupId>io.cucumber</groupId>
6-
<artifactId>cucumber-jvm-scala</artifactId>
7-
<version>5.6.0-SNAPSHOT</version>
8-
</parent>
9-
10-
<artifactId>scala-examples</artifactId>
11-
<packaging>jar</packaging>
12-
<name>Examples: Scala Calculator</name>
13-
14-
<dependencies>
15-
<dependency>
16-
<groupId>io.cucumber</groupId>
17-
<artifactId>cucumber-scala_2.12</artifactId>
18-
<version>${project.version}</version>
19-
<scope>test</scope>
20-
</dependency>
21-
<dependency>
22-
<groupId>io.cucumber</groupId>
23-
<artifactId>cucumber-junit</artifactId>
24-
<scope>test</scope>
25-
</dependency>
26-
<dependency>
27-
<groupId>junit</groupId>
28-
<artifactId>junit</artifactId>
29-
<scope>test</scope>
30-
</dependency>
31-
<dependency>
32-
<groupId>org.scala-lang</groupId>
33-
<artifactId>scala-library</artifactId>
34-
<version>${scala.2.12.version}</version>
35-
</dependency>
36-
<dependency>
37-
<groupId>org.scala-lang</groupId>
38-
<artifactId>scala-compiler</artifactId>
39-
<version>${scala.2.12.version}</version>
40-
</dependency>
41-
</dependencies>
42-
43-
<build>
44-
<plugins>
45-
<plugin>
46-
<groupId>org.apache.maven.plugins</groupId>
47-
<artifactId>maven-compiler-plugin</artifactId>
48-
<configuration>
49-
<source>1.8</source>
50-
<target>1.8</target>
51-
</configuration>
52-
</plugin>
53-
<plugin>
54-
<artifactId>maven-javadoc-plugin</artifactId>
55-
<configuration>
56-
<skip>true</skip>
57-
</configuration>
58-
</plugin>
59-
<plugin>
60-
<artifactId>maven-deploy-plugin</artifactId>
61-
<configuration>
62-
<skip>true</skip>
63-
</configuration>
64-
</plugin>
65-
<plugin>
66-
<groupId>net.alchim31.maven</groupId>
67-
<artifactId>scala-maven-plugin</artifactId>
68-
<configuration>
69-
<excludes>
70-
<exclude>**/*.java</exclude>
71-
</excludes>
72-
</configuration>
73-
<executions>
74-
<execution>
75-
<goals>
76-
<goal>add-source</goal>
77-
<goal>compile</goal>
78-
<goal>testCompile</goal>
79-
</goals>
80-
</execution>
81-
</executions>
82-
</plugin>
83-
</plugins>
84-
</build>
85-
</project>
1+
<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/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
4+
<parent>
5+
<groupId>io.cucumber</groupId>
6+
<artifactId>cucumber-jvm-scala</artifactId>
7+
<version>5.6.0</version>
8+
</parent>
9+
10+
<artifactId>scala-examples</artifactId>
11+
<packaging>jar</packaging>
12+
<name>Examples: Scala Calculator</name>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>io.cucumber</groupId>
17+
<artifactId>cucumber-scala_2.12</artifactId>
18+
<version>${project.version}</version>
19+
<scope>test</scope>
20+
</dependency>
21+
<dependency>
22+
<groupId>io.cucumber</groupId>
23+
<artifactId>cucumber-junit</artifactId>
24+
<scope>test</scope>
25+
</dependency>
26+
<dependency>
27+
<groupId>junit</groupId>
28+
<artifactId>junit</artifactId>
29+
<scope>test</scope>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.scala-lang</groupId>
33+
<artifactId>scala-library</artifactId>
34+
<version>${scala.2.12.version}</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>org.scala-lang</groupId>
38+
<artifactId>scala-compiler</artifactId>
39+
<version>${scala.2.12.version}</version>
40+
</dependency>
41+
</dependencies>
42+
43+
<build>
44+
<plugins>
45+
<plugin>
46+
<groupId>org.apache.maven.plugins</groupId>
47+
<artifactId>maven-compiler-plugin</artifactId>
48+
<configuration>
49+
<source>1.8</source>
50+
<target>1.8</target>
51+
</configuration>
52+
</plugin>
53+
<plugin>
54+
<artifactId>maven-javadoc-plugin</artifactId>
55+
<configuration>
56+
<skip>true</skip>
57+
</configuration>
58+
</plugin>
59+
<plugin>
60+
<artifactId>maven-deploy-plugin</artifactId>
61+
<configuration>
62+
<skip>true</skip>
63+
</configuration>
64+
</plugin>
65+
<plugin>
66+
<groupId>net.alchim31.maven</groupId>
67+
<artifactId>scala-maven-plugin</artifactId>
68+
<configuration>
69+
<excludes>
70+
<exclude>**/*.java</exclude>
71+
</excludes>
72+
</configuration>
73+
<executions>
74+
<execution>
75+
<goals>
76+
<goal>add-source</goal>
77+
<goal>compile</goal>
78+
<goal>testCompile</goal>
79+
</goals>
80+
</execution>
81+
</executions>
82+
</plugin>
83+
</plugins>
84+
</build>
85+
</project>

pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<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/xsd/maven-4.0.0.xsd">
32
<modelVersion>4.0.0</modelVersion>
43
<artifactId>cucumber-jvm-scala</artifactId>
5-
<version>5.6.0-SNAPSHOT</version>
4+
<version>5.6.0</version>
65
<packaging>pom</packaging>
76
<name>Cucumber-JVM: Scala</name>
87
<description>Cucumber for Scala</description>
@@ -38,7 +37,7 @@
3837
<connection>scm:git:git://github.com/cucumber/cucumber-jvm-scala.git</connection>
3938
<developerConnection>scm:git:[email protected]:cucumber/cucumber-jvm-scala.git</developerConnection>
4039
<url>git://github.com/cucumber/cucumber-jvm-scala.git</url>
41-
<tag>v4.3.0</tag>
40+
<tag>v5.6.0</tag>
4241
</scm>
4342

4443
<dependencyManagement>
@@ -120,7 +119,7 @@
120119
<instrumentation>
121120
<ignoreTrivial>true</ignoreTrivial>
122121
</instrumentation>
123-
<check/>
122+
<check />
124123
</configuration>
125124
</plugin>
126125
<plugin>

scala/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.cucumber</groupId>
66
<artifactId>cucumber-jvm-scala</artifactId>
7-
<version>5.6.0-SNAPSHOT</version>
7+
<version>5.6.0</version>
88
</parent>
99

1010
<artifactId>cucumber-scala-aggregator</artifactId>

scala/scala_2.11/pom.xml

Lines changed: 68 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,68 @@
1-
<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/xsd/maven-4.0.0.xsd">
2-
<modelVersion>4.0.0</modelVersion>
3-
4-
<parent>
5-
<groupId>io.cucumber</groupId>
6-
<artifactId>cucumber-scala-aggregator</artifactId>
7-
<version>5.6.0-SNAPSHOT</version>
8-
</parent>
9-
10-
<artifactId>cucumber-scala_2.11</artifactId>
11-
<packaging>jar</packaging>
12-
<name>Cucumber-JVM: Scala (2.11)</name>
13-
14-
<dependencies>
15-
<dependency>
16-
<groupId>org.scala-lang</groupId>
17-
<artifactId>scala-compiler</artifactId>
18-
<version>${scala.2.11.version}</version>
19-
<scope>provided</scope>
20-
</dependency>
21-
22-
<!-- Users have to provide it (for JacksonDefaultDataTableTransformer) -->
23-
<dependency>
24-
<groupId>com.fasterxml.jackson.module</groupId>
25-
<artifactId>jackson-module-scala_2.11</artifactId>
26-
<scope>provided</scope>
27-
</dependency>
28-
29-
<dependency>
30-
<groupId>org.scala-lang</groupId>
31-
<artifactId>scala-library</artifactId>
32-
<version>${scala.2.11.version}</version>
33-
<scope>test</scope>
34-
</dependency>
35-
36-
<dependency>
37-
<groupId>org.mockito</groupId>
38-
<artifactId>mockito-scala_2.11</artifactId>
39-
<version>${mockito-scala.version}</version>
40-
<scope>test</scope>
41-
</dependency>
42-
</dependencies>
43-
44-
<build>
45-
<sourceDirectory>../sources/src/main/scala</sourceDirectory>
46-
<resources>
47-
<resource>
48-
<directory>../sources/src/main/resources</directory>
49-
</resource>
50-
</resources>
51-
<testSourceDirectory>../sources/src/test/scala</testSourceDirectory>
52-
<testResources>
53-
<testResource>
54-
<directory>../sources/src/test/resources</directory>
55-
</testResource>
56-
</testResources>
57-
<plugins>
58-
<plugin>
59-
<groupId>net.alchim31.maven</groupId>
60-
<artifactId>scala-maven-plugin</artifactId>
61-
</plugin>
62-
<plugin>
63-
<groupId>org.apache.maven.plugins</groupId>
64-
<artifactId>maven-antrun-plugin</artifactId>
65-
</plugin>
66-
</plugins>
67-
</build>
68-
</project>
1+
<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/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
4+
<parent>
5+
<groupId>io.cucumber</groupId>
6+
<artifactId>cucumber-scala-aggregator</artifactId>
7+
<version>5.6.0</version>
8+
</parent>
9+
10+
<artifactId>cucumber-scala_2.11</artifactId>
11+
<packaging>jar</packaging>
12+
<name>Cucumber-JVM: Scala (2.11)</name>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>org.scala-lang</groupId>
17+
<artifactId>scala-compiler</artifactId>
18+
<version>${scala.2.11.version}</version>
19+
<scope>provided</scope>
20+
</dependency>
21+
22+
<!-- Users have to provide it (for JacksonDefaultDataTableTransformer) -->
23+
<dependency>
24+
<groupId>com.fasterxml.jackson.module</groupId>
25+
<artifactId>jackson-module-scala_2.11</artifactId>
26+
<scope>provided</scope>
27+
</dependency>
28+
29+
<dependency>
30+
<groupId>org.scala-lang</groupId>
31+
<artifactId>scala-library</artifactId>
32+
<version>${scala.2.11.version}</version>
33+
<scope>test</scope>
34+
</dependency>
35+
36+
<dependency>
37+
<groupId>org.mockito</groupId>
38+
<artifactId>mockito-scala_2.11</artifactId>
39+
<version>${mockito-scala.version}</version>
40+
<scope>test</scope>
41+
</dependency>
42+
</dependencies>
43+
44+
<build>
45+
<sourceDirectory>../sources/src/main/scala</sourceDirectory>
46+
<resources>
47+
<resource>
48+
<directory>../sources/src/main/resources</directory>
49+
</resource>
50+
</resources>
51+
<testSourceDirectory>../sources/src/test/scala</testSourceDirectory>
52+
<testResources>
53+
<testResource>
54+
<directory>../sources/src/test/resources</directory>
55+
</testResource>
56+
</testResources>
57+
<plugins>
58+
<plugin>
59+
<groupId>net.alchim31.maven</groupId>
60+
<artifactId>scala-maven-plugin</artifactId>
61+
</plugin>
62+
<plugin>
63+
<groupId>org.apache.maven.plugins</groupId>
64+
<artifactId>maven-antrun-plugin</artifactId>
65+
</plugin>
66+
</plugins>
67+
</build>
68+
</project>

0 commit comments

Comments
 (0)