Skip to content

Commit

Permalink
Update versions and example
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Mar 20, 2012
1 parent 6863298 commit d623c28
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [Git master](https://github.com/cucumber/cucumber-jvm/compare/v1.0.0.RC22...master)
## [1.0.0.RC23](https://github.com/cucumber/cucumber-jvm/compare/v1.0.0.RC22...v1.0.0.RC23)

* [JUnit] CucumberException when running Cucumber with Jacoco code coverage ([#258](https://github.com/cucumber/cucumber-jvm/issues/258) Jan Stamer, Aslak Hellesøy)
* [Scala] Scala Javadoc problems with build ([#231](https://github.com/cucumber/cucumber-jvm/issues/231) Aslak Hellesøy)
Expand Down
2 changes: 1 addition & 1 deletion examples/java-helloworld/build.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<project name="java-helloworld" basedir="." default="runcukes">
<property name="repo" value="https://oss.sonatype.org/content/repositories/releases"/>
<property name="cucumber.version" value="1.0.0.RC21"/>
<property name="cucumber.version" value="1.0.0.RC23"/>
<property name="gherkin.version" value="2.9.1"/>

<target name="download">
Expand Down
6 changes: 3 additions & 3 deletions examples/java-helloworld/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@

<groupId>info.cukes</groupId>
<artifactId>java-helloworld</artifactId>
<version>1.0.0.RC21</version>
<version>1.0.0.RC23</version>
<packaging>jar</packaging>
<name>Examples: Java Hello World</name>

<dependencies>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>1.0.0.RC21</version>
<version>1.0.0.RC23</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>1.0.0.RC21</version>
<version>1.0.0.RC23</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
import org.junit.runner.RunWith;

@RunWith(Cucumber.class)
@Cucumber.Options(format = {"pretty", "html:target/cucumber"})
public class RunCukesTest {
}

0 comments on commit d623c28

Please sign in to comment.