|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 https://maven.apache.org/xsd/maven-4.1.0.xsd"> |
5 | 3 | <groupId>io.github.helpermethod</groupId> |
6 | 4 | <artifactId>zip-forge</artifactId> |
7 | 5 | <version>${revision}</version> |
|
33 | 31 |
|
34 | 32 | <properties> |
35 | 33 | <java.version>17</java.version> |
36 | | - <java.testVersion>25</java.testVersion> |
37 | 34 | <maven.compiler.release>${java.version}</maven.compiler.release> |
38 | | - <maven.compiler.testRelease>${java.testVersion}</maven.compiler.testRelease> |
39 | 35 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
40 | 36 | <repository.url>git@github.com:helpermethod/zip-forge.git</repository.url> |
41 | 37 | <revision>1.0.0-SNAPSHOT</revision> |
|
81 | 77 | <groupId>org.apache.maven.plugins</groupId> |
82 | 78 | <artifactId>maven-compiler-plugin</artifactId> |
83 | 79 | <version>3.14.1</version> |
84 | | - <executions> |
85 | | - <execution> |
86 | | - <id>default-testCompile</id> |
87 | | - <goals> |
88 | | - <goal>testCompile</goal> |
89 | | - </goals> |
90 | | - <phase>test-compile</phase> |
91 | | - <configuration> |
92 | | - <jdkToolchain> |
93 | | - <version>${java.testVersion}</version> |
94 | | - </jdkToolchain> |
95 | | - </configuration> |
96 | | - </execution> |
97 | | - </executions> |
98 | 80 | </plugin> |
99 | 81 | <plugin> |
100 | 82 | <groupId>org.apache.maven.plugins</groupId> |
101 | 83 | <artifactId>maven-surefire-plugin</artifactId> |
102 | 84 | <version>3.5.4</version> |
103 | | - <configuration> |
104 | | - <jdkToolchain> |
105 | | - <version>${java.testVersion}</version> |
106 | | - </jdkToolchain> |
107 | | - </configuration> |
108 | 85 | </plugin> |
109 | 86 | <plugin> |
110 | 87 | <groupId>org.apache.maven.plugins</groupId> |
|
0 commit comments