Skip to content

Instantly share code, notes, and snippets.

@loulou2u
Last active August 7, 2016 19:17
Show Gist options
  • Save loulou2u/f23e23dfe6ee2195a4af460af443b7e9 to your computer and use it in GitHub Desktop.
Save loulou2u/f23e23dfe6ee2195a4af460af443b7e9 to your computer and use it in GitHub Desktop.
Selenium basic maven pom.ml
<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>com.loulou2u</groupId>
<artifactId>testsuite</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Selenium Testsuite</name>
<description>A selenium test setup with a collection of tests using Selenium Webdriver 3.0.0-beta release.</description>
<!-- properties -->
<properties>
<selenium.version>3.0.0-beta2</selenium.version>
<junit.version>4.4</junit.version>
</properties>
<!-- dependencies -->
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment