|
9 | 9 | <version>1.0.0</version>
|
10 | 10 |
|
11 | 11 | <properties>
|
12 |
| - <maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version> |
13 |
| - <java.version>8</java.version> |
14 |
| - <maven.compiler.target>${java.version}</maven.compiler.target> |
15 |
| - <maven.compiler.source>${java.version}</maven.compiler.source> |
16 |
| - <project.encoding>UTF-8</project.encoding> |
17 |
| - <project.build.sourceEncoding>${project.encoding}</project.build.sourceEncoding> |
18 |
| - <project.reporting.outputEncoding>${project.encoding}</project.reporting.outputEncoding> |
| 12 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 13 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
19 | 15 | </properties>
|
20 | 16 |
|
21 | 17 | <repositories>
|
|
35 | 31 | <version>4.13.0</version>
|
36 | 32 | </dependency>
|
37 | 33 | <dependency>
|
38 |
| - <groupId>org.slf4j</groupId> |
39 |
| - <artifactId>slf4j-api</artifactId> |
40 |
| - <version>2.0.5</version> |
41 |
| - </dependency> |
42 |
| - <dependency> |
43 |
| - <groupId>ch.qos.logback</groupId> |
44 |
| - <artifactId>logback-classic</artifactId> |
45 |
| - <version>1.4.6</version> |
| 34 | + <groupId>org.seleniumhq.selenium</groupId> |
| 35 | + <artifactId>selenium-http-jdk-client</artifactId> |
| 36 | + <version>4.13.0</version> |
46 | 37 | </dependency>
|
47 | 38 | <dependency>
|
48 | 39 | <groupId>org.junit.jupiter</groupId>
|
49 | 40 | <artifactId>junit-jupiter-engine</artifactId>
|
50 |
| - <version>5.9.2</version> |
| 41 | + <version>5.10.0</version> |
51 | 42 | <scope>test</scope>
|
52 | 43 | </dependency>
|
53 | 44 | </dependencies>
|
|
57 | 48 | <plugin>
|
58 | 49 | <groupId>org.apache.maven.plugins</groupId>
|
59 | 50 | <artifactId>maven-surefire-plugin</artifactId>
|
60 |
| - <version>${maven-surefire-plugin.version}</version> |
| 51 | + <version>3.1.2</version> |
61 | 52 | <configuration>
|
62 |
| - <includes> |
63 |
| - <include>**/*Test.java</include> |
64 |
| - <include>**/*Example.java</include> |
65 |
| - </includes> |
| 53 | + <systemPropertyVariables> |
| 54 | + <webdriver.http.factory>jdk-http-client</webdriver.http.factory> |
| 55 | + </systemPropertyVariables> |
66 | 56 | </configuration>
|
67 | 57 | </plugin>
|
68 | 58 | </plugins>
|
|
0 commit comments