Skip to content

Commit

Permalink
[maven-release-plugin] prepare release v6.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cukebot committed Apr 14, 2021
1 parent c69cb33 commit 18db2f2
Show file tree
Hide file tree
Showing 33 changed files with 49 additions and 50 deletions.
2 changes: 1 addition & 1 deletion archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-archetype</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cdi2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-cdi2</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion compatibility/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>cucumber-jvm</artifactId>
<groupId>io.cucumber</groupId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion deltaspike/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-deltaspike</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion docstring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>cucumber-jvm</artifactId>
<groupId>io.cucumber</groupId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
16 changes: 8 additions & 8 deletions examples/calculator-java-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-examples</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>calculator-java-cli</artifactId>
Expand Down Expand Up @@ -49,14 +49,14 @@
</goals>
<configuration>
<target unless="maven.test.skip">
<echo message="Running Cucumber through the CLI"/>
<echo message="Running Cucumber through the CLI" />
<java classname="io.cucumber.core.cli.Main" fork="true" failonerror="true" newenvironment="true" maxmemory="512m" classpathref="maven.test.classpath">
<arg value="--plugin"/>
<arg value="pretty"/>
<arg value="--plugin"/>
<arg value="html:target/results.html"/>
<arg value="--plugin"/>
<arg value="message:target/results.ndjson"/>
<arg value="--plugin" />
<arg value="pretty" />
<arg value="--plugin" />
<arg value="html:target/results.html" />
<arg value="--plugin" />
<arg value="message:target/results.ndjson" />
</java>
</target>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion examples/calculator-java-junit4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-examples</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>calculator-java-junit4</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/calculator-java-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-examples</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>calculator-java-junit5</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/calculator-java-testng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-examples</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>calculator-java-testng</artifactId>
Expand Down
19 changes: 9 additions & 10 deletions examples/calculator-java8-cli/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<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">
<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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-examples</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>calculator-java8-cli</artifactId>
Expand Down Expand Up @@ -43,14 +42,14 @@
</goals>
<configuration>
<target unless="maven.test.skip">
<echo message="Running Cucumber through the CLI"/>
<echo message="Running Cucumber through the CLI" />
<java classname="io.cucumber.core.cli.Main" fork="true" failonerror="true" newenvironment="true" maxmemory="512m" classpathref="maven.test.classpath">
<arg value="--plugin"/>
<arg value="pretty"/>
<arg value="--plugin"/>
<arg value="html:target/results.html"/>
<arg value="--plugin"/>
<arg value="message:target/results.ndjson"/>
<arg value="--plugin" />
<arg value="pretty" />
<arg value="--plugin" />
<arg value="html:target/results.html" />
<arg value="--plugin" />
<arg value="message:target/results.ndjson" />
</java>
</target>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-examples</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-java-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-examples</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>spring-java-junit5</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion examples/wicket-java-junit4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-examples</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>
<artifactId>wicket-java-junit4</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion examples/wicket-java-junit4/wicket-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>wicket-java-junit4</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>
<artifactId>wicket-main</artifactId>
<name>Examples: Wicket application</name>
Expand Down
2 changes: 1 addition & 1 deletion examples/wicket-java-junit4/wicket-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>wicket-java-junit4</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>
<artifactId>wicket-test</artifactId>
<name>Examples: Wicket application tested with Selenium</name>
Expand Down
2 changes: 1 addition & 1 deletion gherkin-messages/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion gherkin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion guice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-guice</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jakarta-cdi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-jakarta-cdi</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-java</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion java8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-java8</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion junit-platform-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-junit-platform-engine</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion junit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-junit</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kotlin-java8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-kotlin-java8</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion needle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-needle</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openejb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-openejb</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion picocontainer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-picocontainer</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-plugin</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<version>2.1.2</version>
</parent>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
<packaging>pom</packaging>
<name>Cucumber-JVM</name>
<description>Cucumber for the JVM</description>
Expand Down Expand Up @@ -45,7 +45,7 @@
<connection>scm:git:git://github.com/cucumber/cucumber-jvm.git</connection>
<developerConnection>scm:git:[email protected]:cucumber/cucumber-jvm.git</developerConnection>
<url>git://github.com/cucumber/cucumber-jvm.git</url>
<tag>HEAD</tag>
<tag>v6.10.3</tag>
</scm>

<dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-spring</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion testng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-testng</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion weld/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>6.10.3-SNAPSHOT</version>
<version>6.10.3</version>
</parent>

<artifactId>cucumber-weld</artifactId>
Expand Down

0 comments on commit 18db2f2

Please sign in to comment.