-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
37 lines (35 loc) · 1.21 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.elementalselenium</groupId>
<artifactId>tips</artifactId>
<version>1.0.0</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<scope>system</scope>
<systemPath>/Users/tourdedave/Desktop/selenium-server-standalone-latest.jar</systemPath>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19</version>
<configuration>
<parallel>classesAndMethods</parallel>
<threadCount>5</threadCount>
<runOrder>random</runOrder>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>