Skip to content

Instantly share code, notes, and snippets.

@timothyshort
Created July 13, 2017 17:45
Show Gist options
  • Save timothyshort/fef326879474c83764e5548c276263cb to your computer and use it in GitHub Desktop.
Save timothyshort/fef326879474c83764e5548c276263cb to your computer and use it in GitHub Desktop.
Maven's POM for Cucumber
<dependencies>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<includes>
<excludes>**/TestRunner.java</excludes> <!-- Name of TestRunner Class -->
</includes>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment