154 lines
4.7 KiB
XML
154 lines
4.7 KiB
XML
|
|
<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.colosa.qa.automation</groupId>
|
||
|
|
<artifactId>pm3FunctionalTests</artifactId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
|
||
|
|
<name>pm3FunctionalTests</name>
|
||
|
|
<url>http://maven.apache.org</url>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<project.resources.sourceEncoding>UTF-8</project.resources.sourceEncoding>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>junit</groupId>
|
||
|
|
<artifactId>junit</artifactId>
|
||
|
|
<version>4.11</version>
|
||
|
|
<!--<scope>test</scope>-->
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!--<dependency>
|
||
|
|
<groupId>junit</groupId>
|
||
|
|
<artifactId>junit</artifactId>
|
||
|
|
<version>4.8.1</version>
|
||
|
|
|
||
|
|
</dependency>-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
||
|
|
<artifactId>selenium-java</artifactId>
|
||
|
|
<version>2.39.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.itextpdf</groupId>
|
||
|
|
<artifactId>itextpdf</artifactId>
|
||
|
|
<version>5.1.3</version>
|
||
|
|
<type>jar</type>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.itextpdf.tool</groupId>
|
||
|
|
<artifactId>xmlworker</artifactId>
|
||
|
|
<version>1.1.1</version>
|
||
|
|
<type>jar</type>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<!--<testSourceDirectory>${basedir}\src\main\java\com\colosa\qa\automatization\tests\PMFunctions</testSourceDirectory>-->
|
||
|
|
<plugins>
|
||
|
|
<!-- To define the plugin version in your parent POM -->
|
||
|
|
<!-- <pluginManagement>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
||
|
|
<version>2.16</version>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</pluginManagement> -->
|
||
|
|
|
||
|
|
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.0</version>
|
||
|
|
<configuration>
|
||
|
|
<fork>true</fork>
|
||
|
|
<executable>${JAVA_JDK_1_7_JAVAC}</executable>
|
||
|
|
<encoding>UTF-8</encoding>
|
||
|
|
<source>1.7</source>
|
||
|
|
<target>1.7</target>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<!-- <plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
||
|
|
<version>2.13</version>
|
||
|
|
<configuration>
|
||
|
|
<includes>
|
||
|
|
<include>**/TestSuiteAll.java</include>
|
||
|
|
</includes>
|
||
|
|
</configuration>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.maven.surefire</groupId>
|
||
|
|
<artifactId>surefire-junit47</artifactId>
|
||
|
|
<version>2.13</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</plugin>-->
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
|
<version>2.16</version>
|
||
|
|
<configuration>
|
||
|
|
<includes>
|
||
|
|
<include>**/TestSuiteAll.java</include>
|
||
|
|
</includes>
|
||
|
|
<!--<parallel>classes</parallel>
|
||
|
|
<threadCount>2</threadCount>-->
|
||
|
|
</configuration>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.maven.surefire</groupId>
|
||
|
|
<artifactId>surefire-junit47</artifactId>
|
||
|
|
<version>2.16</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<!--<goals>
|
||
|
|
<goal>
|
||
|
|
<id>test22</id>
|
||
|
|
<configuration>
|
||
|
|
<fork>true</fork>
|
||
|
|
<executable>${JAVA_JDK_1_7_JAVAC}</executable>
|
||
|
|
<encoding>UTF-8</encoding>
|
||
|
|
<source>1.7</source>
|
||
|
|
<target>1.7</target>
|
||
|
|
<includes>
|
||
|
|
<include>**/Test*.java</include>
|
||
|
|
</includes>
|
||
|
|
</configuration>
|
||
|
|
</goal>
|
||
|
|
</goals>-->
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
||
|
|
<version>2.16</version>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
|
||
|
|
</build>
|
||
|
|
|
||
|
|
<reporting>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
||
|
|
<version>2.16</version>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</reporting>
|
||
|
|
</project>
|
||
|
|
|
||
|
|
|