Skip to content

Commit 955251d

Browse files
committed
[maven-release-plugin] prepare release v1.0.0.RC8
1 parent 9be94cf commit 955251d

File tree

14 files changed

+61
-79
lines changed

14 files changed

+61
-79
lines changed

clojure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>info.cukes</groupId>
66
<artifactId>cucumber-jvm</artifactId>
77
<relativePath>../pom.xml</relativePath>
8-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
99
</parent>
1010

1111
<artifactId>cucumber-clojure</artifactId>

core/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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

54
<parent>
65
<groupId>info.cukes</groupId>
76
<artifactId>cucumber-jvm</artifactId>
87
<relativePath>../pom.xml</relativePath>
9-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
109
</parent>
1110

1211
<artifactId>cucumber-core</artifactId>

groovy/pom.xml

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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

54
<parent>
65
<groupId>info.cukes</groupId>
76
<artifactId>cucumber-jvm</artifactId>
87
<relativePath>../pom.xml</relativePath>
9-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
109
</parent>
1110

1211
<artifactId>cucumber-groovy</artifactId>
@@ -77,8 +76,7 @@
7776
<phase>generate-sources</phase>
7877
<configuration>
7978
<target>
80-
<taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy"
81-
classpathref="maven.plugin.classpath"/>
79+
<taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpathref="maven.plugin.classpath" />
8280

8381
<groovy><![CDATA[
8482
import groovy.text.SimpleTemplateEngine
@@ -104,8 +102,7 @@ I18n.all.each { i18n ->
104102
<phase>package</phase>
105103
<configuration>
106104
<target>
107-
<copy file="${project.build.directory}/${project.build.finalName}-full.jar"
108-
tofile="${basedir}/bin/cucumber-groovy-full.jar"/>
105+
<copy file="${project.build.directory}/${project.build.finalName}-full.jar" tofile="${basedir}/bin/cucumber-groovy-full.jar" />
109106
</target>
110107
</configuration>
111108
<goals>
@@ -125,20 +122,17 @@ I18n.all.each { i18n ->
125122
This isn't exactly the same as running `groovy bin/cucumber-jvm.groovy`
126123
without cucumber-groovy-full.jar on the classpath, but that will work too.
127124
-->
128-
<echo message="Running groovy tests via the CLI..."/>
129-
<java classname="groovy.ui.GroovyMain" fork="true" failonerror="true"
130-
newenvironment="true" maxmemory="512m">
125+
<echo message="Running groovy tests via the CLI..." />
126+
<java classname="groovy.ui.GroovyMain" fork="true" failonerror="true" newenvironment="true" maxmemory="512m">
131127
<classpath>
132-
<pathelement
133-
location="${maven.dependency.org.codehaus.groovy.groovy-all.jar.path}"/>
134-
<pathelement
135-
location="${maven.dependency.junit.junit.jar.path}"/>
136-
<pathelement location="${basedir}/bin/cucumber-groovy-full.jar"/>
128+
<pathelement location="${maven.dependency.org.codehaus.groovy.groovy-all.jar.path}" />
129+
<pathelement location="${maven.dependency.junit.junit.jar.path}" />
130+
<pathelement location="${basedir}/bin/cucumber-groovy-full.jar" />
137131
</classpath>
138-
<arg value="bin/cucumber-jvm.groovy"/>
139-
<arg value="--glue"/>
140-
<arg value="src/test/resources"/>
141-
<arg value="src/test/resources"/>
132+
<arg value="bin/cucumber-jvm.groovy" />
133+
<arg value="--glue" />
134+
<arg value="src/test/resources" />
135+
<arg value="src/test/resources" />
142136
</java>
143137
</target>
144138
</configuration>

guice/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>info.cukes</groupId>
66
<artifactId>cucumber-jvm</artifactId>
77
<relativePath>../pom.xml</relativePath>
8-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
99
</parent>
1010

1111
<artifactId>cucumber-guice</artifactId>

ioke/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>info.cukes</groupId>
66
<artifactId>cucumber-jvm</artifactId>
77
<relativePath>../pom.xml</relativePath>
8-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
99
</parent>
1010

1111
<artifactId>cucumber-ioke</artifactId>

java/pom.xml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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

54
<parent>
65
<groupId>info.cukes</groupId>
76
<artifactId>cucumber-jvm</artifactId>
87
<relativePath>../pom.xml</relativePath>
9-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
109
</parent>
1110

1211
<artifactId>cucumber-java</artifactId>
@@ -27,8 +26,7 @@
2726
<phase>generate-sources</phase>
2827
<configuration>
2928
<target>
30-
<taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy"
31-
classpathref="maven.plugin.classpath"/>
29+
<taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpathref="maven.plugin.classpath" />
3230

3331
<groovy><![CDATA[
3432
import groovy.text.SimpleTemplateEngine

jruby/pom.xml

Lines changed: 23 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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

54
<parent>
65
<groupId>info.cukes</groupId>
76
<artifactId>cucumber-jvm</artifactId>
87
<relativePath>../pom.xml</relativePath>
9-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
109
</parent>
1110

1211
<artifactId>cucumber-jruby</artifactId>
@@ -85,14 +84,13 @@
8584
<configuration>
8685
<target>
8786
<!-- also run the CLI test to ensure that stuff works via the CLI as well -->
88-
<echo message="Running jruby tests via the CLI..."/>
89-
<java jar="${maven.dependency.org.jruby.jruby-complete.jar.path}" fork="true"
90-
failonerror="true" newenvironment="true" maxmemory="512m">
91-
<arg value="-S"/>
92-
<arg value="bin/cucumber-jvm"/>
93-
<arg value="--glue"/>
94-
<arg value="src/test/resources"/>
95-
<arg value="src/test/resources"/>
87+
<echo message="Running jruby tests via the CLI..." />
88+
<java jar="${maven.dependency.org.jruby.jruby-complete.jar.path}" fork="true" failonerror="true" newenvironment="true" maxmemory="512m">
89+
<arg value="-S" />
90+
<arg value="bin/cucumber-jvm" />
91+
<arg value="--glue" />
92+
<arg value="src/test/resources" />
93+
<arg value="src/test/resources" />
9694
</java>
9795
</target>
9896
</configuration>
@@ -103,18 +101,16 @@
103101
<configuration>
104102
<target>
105103
<!-- drop it in the lib directory for great justice -->
106-
<copy file="${project.build.directory}/${project.build.finalName}-full.jar"
107-
tofile="${basedir}/lib/cucumber-jruby-full.jar"/>
104+
<copy file="${project.build.directory}/${project.build.finalName}-full.jar" tofile="${basedir}/lib/cucumber-jruby-full.jar" />
108105

109106
<!-- build the gem file using jruby -->
110-
<echo message="Building Gem"/>
111-
<java jar="${maven.dependency.org.jruby.jruby-complete.jar.path}" failonerror="true"
112-
fork="true">
113-
<sysproperty key="cucumber-jvm.version" value="${project.version}"/>
114-
<arg value="-S"/>
115-
<arg value="gem"/>
116-
<arg value="build"/>
117-
<arg value="cucumber-jvm.gemspec"/>
107+
<echo message="Building Gem" />
108+
<java jar="${maven.dependency.org.jruby.jruby-complete.jar.path}" failonerror="true" fork="true">
109+
<sysproperty key="cucumber-jvm.version" value="${project.version}" />
110+
<arg value="-S" />
111+
<arg value="gem" />
112+
<arg value="build" />
113+
<arg value="cucumber-jvm.gemspec" />
118114
</java>
119115
</target>
120116
</configuration>
@@ -128,13 +124,12 @@
128124
<configuration>
129125
<target>
130126
<!-- publish the gem to rubygems.org -->
131-
<echo message="Publishing Gem"/>
132-
<java jar="${maven.dependency.org.jruby.jruby-complete.jar.path}" failonerror="true"
133-
fork="true">
134-
<arg value="-S"/>
135-
<arg value="gem"/>
136-
<arg value="push"/>
137-
<arg value="cucumber-jvm${project.parent.version}.gemspec"/>
127+
<echo message="Publishing Gem" />
128+
<java jar="${maven.dependency.org.jruby.jruby-complete.jar.path}" failonerror="true" fork="true">
129+
<arg value="-S" />
130+
<arg value="gem" />
131+
<arg value="push" />
132+
<arg value="cucumber-jvm${project.parent.version}.gemspec" />
138133
</java>
139134
</target>
140135
</configuration>

junit/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>info.cukes</groupId>
66
<artifactId>cucumber-jvm</artifactId>
77
<relativePath>../pom.xml</relativePath>
8-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
99
</parent>
1010

1111
<artifactId>cucumber-junit</artifactId>

jython/pom.xml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>info.cukes</groupId>
66
<artifactId>cucumber-jvm</artifactId>
77
<relativePath>../pom.xml</relativePath>
8-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
99
</parent>
1010

1111
<artifactId>cucumber-jython</artifactId>
@@ -83,14 +83,13 @@
8383
<configuration>
8484
<target>
8585
<!-- also run the CLI test to ensure that stuff works via the CLI as well -->
86-
<echo message="Running jython tests via the CLI..."/>
87-
<java jar="${maven.dependency.org.python.jython-standalone.jar.path}" fork="true"
88-
failonerror="true" newenvironment="true" maxmemory="512m">
89-
<arg value="-S"/>
90-
<arg value="bin/cucumber-jvm.py"/>
91-
<arg value="--glue"/>
92-
<arg value="src/test/resources"/>
93-
<arg value="src/test/resources"/>
86+
<echo message="Running jython tests via the CLI..." />
87+
<java jar="${maven.dependency.org.python.jython-standalone.jar.path}" fork="true" failonerror="true" newenvironment="true" maxmemory="512m">
88+
<arg value="-S" />
89+
<arg value="bin/cucumber-jvm.py" />
90+
<arg value="--glue" />
91+
<arg value="src/test/resources" />
92+
<arg value="src/test/resources" />
9493
</java>
9594
</target>
9695
</configuration>
@@ -101,8 +100,7 @@
101100
<configuration>
102101
<target>
103102
<!-- drop it in the lib directory for great justice -->
104-
<copy file="${project.build.directory}/${project.build.finalName}-full.jar"
105-
tofile="${basedir}/bin/cucumber-jython-full.jar"/>
103+
<copy file="${project.build.directory}/${project.build.finalName}-full.jar" tofile="${basedir}/bin/cucumber-jython-full.jar" />
106104
</target>
107105
</configuration>
108106
<goals>

picocontainer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>info.cukes</groupId>
66
<artifactId>cucumber-jvm</artifactId>
77
<relativePath>../pom.xml</relativePath>
8-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
99
</parent>
1010

1111
<artifactId>cucumber-picocontainer</artifactId>

pom.xml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
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
<groupId>info.cukes</groupId>
54
<artifactId>cucumber-jvm</artifactId>
6-
<version>1.0.0.RC8-SNAPSHOT</version>
5+
<version>1.0.0.RC8</version>
76
<packaging>pom</packaging>
87
<name>Cucumber-JVM</name>
98
<url>http://cukes.info/</url>
@@ -359,8 +358,7 @@
359358
<shadedArtifactAttached>true</shadedArtifactAttached>
360359
<shadedClassifierName>full</shadedClassifierName>
361360
<transformers>
362-
<transformer
363-
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
361+
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
364362
<mainClass>cucumber.cli.Main</mainClass>
365363
</transformer>
366364
</transformers>

rhino/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>info.cukes</groupId>
66
<artifactId>cucumber-jvm</artifactId>
77
<relativePath>../pom.xml</relativePath>
8-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
99
</parent>
1010

1111
<artifactId>cucumber-rhino</artifactId>

spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>info.cukes</groupId>
66
<artifactId>cucumber-jvm</artifactId>
77
<relativePath>../pom.xml</relativePath>
8-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
99
</parent>
1010

1111
<artifactId>cucumber-spring</artifactId>

weld/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>info.cukes</groupId>
66
<artifactId>cucumber-jvm</artifactId>
77
<relativePath>../pom.xml</relativePath>
8-
<version>1.0.0.RC8-SNAPSHOT</version>
8+
<version>1.0.0.RC8</version>
99
</parent>
1010

1111
<artifactId>cucumber-weld</artifactId>

0 commit comments

Comments
 (0)