|
1 | 1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> |
2 | | -<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"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 5 | <modelVersion>4.0.0</modelVersion> |
4 | 6 |
|
5 | 7 | <groupId>com.browserstack</groupId> |
|
10 | 12 | <maven.compiler.source>1.8</maven.compiler.source> |
11 | 13 | <maven.compiler.target>1.8</maven.compiler.target> |
12 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + |
| 16 | + <selenium.version>4.1.4</selenium.version> |
| 17 | + <testng.version>7.4.0</testng.version> |
| 18 | + <browserstack.sdk.version>1.1.23</browserstack.sdk.version> |
13 | 19 | </properties> |
14 | 20 |
|
15 | 21 | <dependencies> |
16 | 22 | <dependency> |
17 | 23 | <groupId>org.seleniumhq.selenium</groupId> |
18 | 24 | <artifactId>selenium-java</artifactId> |
19 | | - <version>4.22.0</version> |
| 25 | + <version>${selenium.version}</version> |
20 | 26 | </dependency> |
21 | 27 |
|
22 | 28 | <dependency> |
23 | 29 | <groupId>org.testng</groupId> |
24 | 30 | <artifactId>testng</artifactId> |
25 | | - <version>7.10.2</version> |
| 31 | + <version>${testng.version}</version> |
26 | 32 | <scope>test</scope> |
27 | 33 | </dependency> |
28 | 34 |
|
29 | 35 | <dependency> |
30 | 36 | <groupId>com.browserstack</groupId> |
31 | 37 | <artifactId>browserstack-java-sdk</artifactId> |
32 | | - <version>LATEST</version> |
| 38 | + <version>${browserstack.sdk.version}</version> |
33 | 39 | <scope>compile</scope> |
34 | 40 | </dependency> |
35 | 41 | </dependencies> |
|
39 | 45 | <plugin> |
40 | 46 | <groupId>org.apache.maven.plugins</groupId> |
41 | 47 | <artifactId>maven-compiler-plugin</artifactId> |
42 | | - <version>3.8.1</version> |
| 48 | + <version>3.8.1</version> |
43 | 49 | <configuration> |
44 | 50 | <source>1.8</source> |
45 | 51 | <target>1.8</target> |
|
0 commit comments