2019-07-25 05:27:20 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>
|
2019-07-25 07:30:41 +00:00
|
|
|
<groupId>org.fremo.fredl.test</groupId>
|
|
|
|
<artifactId>org.fremo.fredl.selenium</artifactId>
|
2019-07-25 05:27:20 +00:00
|
|
|
<version>1.0</version>
|
2019-07-25 07:30:41 +00:00
|
|
|
<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>
|
2019-07-25 05:27:20 +00:00
|
|
|
<dependencies>
|
2019-07-25 07:30:41 +00:00
|
|
|
<!-- <dependency>
|
2019-07-25 05:27:20 +00:00
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-server</artifactId>
|
2019-07-25 06:57:15 +00:00
|
|
|
<version>3.141.59</version>
|
2019-07-25 07:30:41 +00:00
|
|
|
</dependency> -->
|
2019-07-25 06:57:15 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-java</artifactId>
|
|
|
|
<version>3.141.59</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>htmlunit-driver</artifactId>
|
|
|
|
<version>2.33.2</version>
|
2019-07-25 05:27:20 +00:00
|
|
|
</dependency>
|
2019-07-25 07:30:41 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
<artifactId>testng</artifactId>
|
|
|
|
<version>6.8.8</version>
|
|
|
|
</dependency>
|
2019-07-25 05:27:20 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|