added testng and adapted src
This commit is contained in:
42
pom.xml
42
pom.xml
@@ -3,15 +3,44 @@
|
||||
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>FreDLUiTests</groupId>
|
||||
<artifactId>FreDLUiTests</artifactId>
|
||||
<groupId>org.fremo.fredl.test</groupId>
|
||||
<artifactId>org.fremo.fredl.selenium</artifactId>
|
||||
<version>1.0</version>
|
||||
<properties>
|
||||
<jre.level>1.8</jre.level>
|
||||
<jdk.level>1.8</jdk.level>
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
<!-- Compiler plug-in -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>${jdk.level}</source>
|
||||
<target>${jdk.level}</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- Below plug-in is used to execute tests -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.19.1</version>
|
||||
<configuration>
|
||||
<suiteXmlFiles>
|
||||
<!-- TestNG suite XML files -->
|
||||
<suiteXmlFile>testng.xml</suiteXmlFile>
|
||||
</suiteXmlFiles>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<!-- <dependency>
|
||||
<groupId>org.seleniumhq.selenium</groupId>
|
||||
<artifactId>selenium-server</artifactId>
|
||||
<version>3.141.59</version>
|
||||
</dependency>
|
||||
</dependency> -->
|
||||
<dependency>
|
||||
<groupId>org.seleniumhq.selenium</groupId>
|
||||
<artifactId>selenium-java</artifactId>
|
||||
@@ -22,5 +51,10 @@
|
||||
<artifactId>htmlunit-driver</artifactId>
|
||||
<version>2.33.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.testng</groupId>
|
||||
<artifactId>testng</artifactId>
|
||||
<version>6.8.8</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
||||
Reference in New Issue
Block a user