|
9 | 9 |
|
10 | 10 | <properties>
|
11 | 11 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
12 |
| - <java.version>11</java.version> |
13 |
| - <maven.compiler.version>3.8.1</maven.compiler.version> |
14 |
| - <karate.version>0.9.6</karate.version> |
| 12 | + <java.version>17</java.version> |
| 13 | + <!-- Maven plugins --> |
| 14 | + <maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version> |
| 15 | + <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version> |
| 16 | + <karate.version>1.4.1</karate.version> |
15 | 17 | <cucumber.reporting.version>5.5.3</cucumber.reporting.version>
|
16 | 18 | <maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version>
|
17 | 19 | <puppycrawl-tools-checkstyle.version>8.44</puppycrawl-tools-checkstyle.version>
|
|
21 | 23 | </properties>
|
22 | 24 |
|
23 | 25 | <dependencies>
|
24 |
| - <dependency> |
25 |
| - <groupId>com.intuit.karate</groupId> |
26 |
| - <artifactId>karate-apache</artifactId> |
27 |
| - <version>${karate.version}</version> |
28 |
| - <scope>test</scope> |
29 |
| - </dependency> |
30 | 26 | <dependency>
|
31 | 27 | <groupId>com.intuit.karate</groupId>
|
32 | 28 | <artifactId>karate-junit5</artifactId>
|
|
93 | 89 | <plugin>
|
94 | 90 | <groupId>org.apache.maven.plugins</groupId>
|
95 | 91 | <artifactId>maven-compiler-plugin</artifactId>
|
96 |
| - <version>${maven.compiler.version}</version> |
| 92 | + <version>${maven-compiler-plugin.version}</version> |
97 | 93 | <configuration>
|
98 | 94 | <encoding>UTF-8</encoding>
|
99 |
| - <source>${java.version}</source> |
100 |
| - <target>${java.version}</target> |
| 95 | + <release>${java.version}</release> |
101 | 96 | </configuration>
|
102 | 97 | </plugin>
|
103 | 98 | <plugin>
|
|
129 | 124 | <plugin>
|
130 | 125 | <groupId>org.apache.maven.plugins</groupId>
|
131 | 126 | <artifactId>maven-surefire-plugin</artifactId>
|
132 |
| - <version>2.22.2</version> |
| 127 | + <version>${maven-surefire-plugin.version}</version> |
133 | 128 | </plugin>
|
134 | 129 | <plugin>
|
135 | 130 | <groupId>com.github.spotbugs</groupId>
|
|
0 commit comments