-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathpom.xml
60 lines (57 loc) · 2.01 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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.saucelabs</groupId>
<artifactId>demo-java</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<properties>
<selenium.version>4.25.0</selenium.version>
<sauce.version>1.6.0</sauce.version>
<sauce_junit5.version>1.0.0</sauce_junit5.version>
<sauce_junit4.version>1.5.0</sauce_junit4.version>
<sauce_testng.version>1.5.0</sauce_testng.version>
<maven.surefire.version>3.5.1</maven.surefire.version>
</properties>
<modules>
<module>best-practice</module>
<module>appium-junit4-cucumber-examples</module>
<module>gitpod</module>
<module>selenium-cucumber-examples</module>
<module>selenium-examples</module>
<module>selenium-junit4-examples</module>
<module>selenium-testng-examples</module>
<module>appium/appium-app/appium-app-examples</module>
<module>appium/appium-app/appium-app-best-practice</module>
<module>appium/appium-web/appium-web-examples</module>
</modules>
<dependencies>
<dependency>
<groupId>com.saucelabs</groupId>
<artifactId>sauce_bindings</artifactId>
<version>${sauce.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>test</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
</project>