Skip to content

Commit

Permalink
Merge branch 'master' of github.com:tsundberg/cucumber-jvm into tsund…
Browse files Browse the repository at this point in the history
…berg-master
  • Loading branch information
aslakhellesoy committed Aug 26, 2013
2 parents c196d46 + bf98674 commit c3ef5d0
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 29 deletions.
4 changes: 1 addition & 3 deletions examples/java-wicket/java-wicket-main/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>info.cukes</groupId>
<artifactId>java-wicket-selenium</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.5-SNAPSHOT</version>
</parent>
<artifactId>java-wicket-main</artifactId>
<name>Examples: A Wicket application that can be tested with Selenium WebDriver</name>
Expand All @@ -16,7 +16,6 @@
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-core</artifactId>
<version>6.2.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -26,7 +25,6 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>9.0.0.M2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
7 changes: 2 additions & 5 deletions examples/java-wicket/java-wicket-test/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>info.cukes</groupId>
<artifactId>java-wicket-selenium</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.1.5-SNAPSHOT</version>
</parent>
<artifactId>java-wicket-test</artifactId>
<name>Examples: A Selenium WebDriver example testing a Wicket application</name>
Expand All @@ -13,7 +13,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.14</version>
<executions>
<execution>
<id>integration-test</id>
Expand All @@ -34,7 +33,6 @@
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.3.0</version>
<executions>
<execution>
<id>start-servlet-engine</id>
Expand Down Expand Up @@ -71,7 +69,7 @@
<dependency>
<groupId>info.cukes</groupId>
<artifactId>java-wicket-main</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>${project.version}</version>
<type>war</type>
<scope>test</scope>
</dependency>
Expand All @@ -93,7 +91,6 @@
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.31.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
27 changes: 6 additions & 21 deletions examples/java-wicket/pom.xml
@@ -1,32 +1,17 @@
<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>
<groupId>info.cukes</groupId>
<parent>
<groupId>info.cukes</groupId>
<artifactId>cucumber-jvm</artifactId>
<relativePath>../../pom.xml</relativePath>
<version>1.1.5-SNAPSHOT</version>
</parent>
<artifactId>java-wicket-selenium</artifactId>
<version>1.1.4-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Examples: A Wicket application tested with Selenium WebDriver</name>
<modules>
<module>java-wicket-main</module>
<module>java-wicket-test</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>1.1.3</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
18 changes: 18 additions & 0 deletions pom.xml
Expand Up @@ -59,6 +59,8 @@
<android-maven-plugin.version>3.6.1</android-maven-plugin.version>
<!-- Minimum android sdk api level 8 = platform 2.2.1 -->
<android.version>2.2.1</android.version>
<wicket.version>6.9.1</wicket.version>
<jetty.version>9.0.5.v20130815</jetty.version>
</properties>
<licenses>
<license>
Expand Down Expand Up @@ -327,6 +329,12 @@
<artifactId>selenium-server</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.webbitserver</groupId>
<artifactId>webbit</artifactId>
Expand Down Expand Up @@ -397,6 +405,16 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-core</artifactId>
<version>${wicket.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${jetty.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit c3ef5d0

Please sign in to comment.