|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>app.getxray</groupId> |
5 | 5 | <artifactId>xray-maven-plugin</artifactId> |
6 | | - <version>0.9.0</version> |
| 6 | + <version>0.10.0</version> |
7 | 7 | <packaging>maven-plugin</packaging> |
8 | 8 | <name>xray-maven-plugin</name> |
9 | 9 | <description>Maven plugin for interacting with Xray (server/datacenter and cloud), used in CI/CD for assisting in test automation flows, such as reporting test results back to Xray and, by consequence, Jira.</description> |
|
38 | 38 | </scm> |
39 | 39 |
|
40 | 40 | <properties> |
41 | | - <maven.compiler.target>1.8</maven.compiler.target> |
42 | | - <maven.compiler.source>1.8</maven.compiler.source> |
| 41 | + <maven.compiler.release>17</maven.compiler.release> |
| 42 | + <maven.compiler.target>17</maven.compiler.target> |
| 43 | + <maven.compiler.source>17</maven.compiler.source> |
43 | 44 | <maven-plugin-api.version>3.8.5</maven-plugin-api.version> |
44 | 45 | <maven-plugin-annotations.version>3.6.4</maven-plugin-annotations.version> |
45 | 46 | <maven-project.version>2.2.1</maven-project.version> |
46 | 47 | <maven-plugin-plugin.version>3.6.4</maven-plugin-plugin.version> |
47 | 48 | <maven-site-plugin.version>3.12.0</maven-site-plugin.version> |
48 | | - <maven-failsafe-plugin.version>3.2.5</maven-failsafe-plugin.version> |
49 | | - <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> |
| 49 | + <maven-failsafe-plugin.version>3.5.4</maven-failsafe-plugin.version> |
| 50 | + <maven-surefire-plugin.version>3.5.4</maven-surefire-plugin.version> |
50 | 51 | <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version> |
51 | 52 | <mockito.version>4.11.0</mockito.version> |
52 | 53 | <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> |
53 | 54 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
54 | 55 | <itf.version>0.13.1</itf.version> |
55 | | - <junit.version>5.12.2</junit.version> |
56 | | - <junit-platform.version>1.12.2</junit-platform.version> |
57 | | - <jacoco.version>0.8.13</jacoco.version> |
| 56 | + <junit.version>5.14.1</junit.version> |
| 57 | + <jacoco.version>0.8.14</jacoco.version> |
58 | 58 | <internal.xray-maven-plugin.version>0.8.0</internal.xray-maven-plugin.version> |
59 | 59 | <unit.coverage.file>${project.build.directory}/jacoco-output/jacoco-unit-tests.exec</unit.coverage.file> |
60 | 60 | <it.coverage.file>${project.build.directory}/jacoco-output/jacoco-it-tests.exec</it.coverage.file> |
|
97 | 97 | <dependency> |
98 | 98 | <groupId>com.squareup.okhttp3</groupId> |
99 | 99 | <artifactId>okhttp</artifactId> |
100 | | - <version>4.9.3</version> |
| 100 | + <version>4.12.0</version> |
101 | 101 | </dependency> |
102 | 102 |
|
103 | 103 | <dependency> |
|
161 | 161 | <dependency> |
162 | 162 | <groupId>app.getxray</groupId> |
163 | 163 | <artifactId>xray-junit-extensions</artifactId> |
164 | | - <version>0.7.2</version> |
| 164 | + <version>1.0.0</version> |
165 | 165 | <scope>test</scope> |
166 | 166 | </dependency> |
167 | 167 |
|
|
290 | 290 | </excludes> |
291 | 291 |
|
292 | 292 | <testFailureIgnore>false</testFailureIgnore> |
293 | | - <disableXmlReport>true</disableXmlReport> |
| 293 | + <statelessTestsetReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5Xml30StatelessReporter"> |
| 294 | + <disable>true</disable> |
| 295 | + </statelessTestsetReporter> |
294 | 296 | <useFile>false</useFile> |
295 | 297 | </configuration> |
296 | 298 | </plugin> |
|
345 | 347 | <!-- |
346 | 348 | check if the following ones are actually needed or not to run the integration tests |
347 | 349 | --> |
348 | | - <systemProperties> |
| 350 | + <systemPropertyVariables> |
349 | 351 | <maven.version>${maven.version}</maven.version> |
350 | 352 | <maven.home>${maven.home}</maven.home> |
351 | | - </systemProperties> |
| 353 | + </systemPropertyVariables> |
352 | 354 |
|
353 | 355 | <argLine>${failsafe.jacoco.args}</argLine> |
354 | 356 | <includes> |
|
0 commit comments