@@ -15,7 +15,7 @@ check for new dependency/plugin updates using:
1515
1616 <groupId >com.vegardit.maven</groupId >
1717 <artifactId >vegardit-maven-parent</artifactId >
18- <version >6.1.6 </version >
18+ <version >6.1.7-SNAPSHOT </version >
1919 <packaging >pom</packaging >
2020
2121
@@ -53,7 +53,7 @@ check for new dependency/plugin updates using:
5353 <url >https://github.com/vegardit/vegardit-maven-parent</url >
5454 <connection >scm:git:https://github.com/vegardit/vegardit-maven-parent.git</connection >
5555 <developerConnection >scm:git:https://github.com/vegardit/vegardit-maven-parent.git</developerConnection >
56- <tag >6.1.6 </tag >
56+ <tag >HEAD </tag >
5757 </scm >
5858
5959
@@ -89,7 +89,7 @@ check for new dependency/plugin updates using:
8989 Use the Maven Build Timestamp as modification timestamp for all entries in the produced JAR file.
9090 See https://maven.apache.org/guides/mini/guide-reproducible-builds.html
9191 -->
92- <project .build.outputTimestamp>2025-02-22T01:50:20Z </project .build.outputTimestamp>
92+ <project .build.outputTimestamp>2025-02-22T01:50:42Z </project .build.outputTimestamp>
9393
9494 <java .version>17</java .version>
9595 <java .vendor>default</java .vendor>
@@ -291,8 +291,7 @@ check for new dependency/plugin updates using:
291291 */
292292 def javaVersion = getProjectProp("java.version");
293293 def javaMajorVersion = Integer.parseInt(javaVersion.indexOf(".") > -1 ? javaVersion.substring(0, javaVersion.indexOf(".")) : javaVersion);
294- def ecjVersion = javaMajorVersion < 17 ? "3.33.0" : project.properties["eclipse-java-compiler.version"]; def ecjArtifactMeta = artifactFactory.createArtifactWithClassifier("org.eclipse.jdt", "ecj", ecjVersion, "jar", null);
295- def ecjArtifact = artifactResolver.resolve(new org.apache.maven.artifact.resolver.ArtifactResolutionRequest()
294+ def ecjVersion = javaMajorVersion < 17 ? "3.33.0" : project.properties["eclipse-java-compiler.version"]; def ecjArtifactMeta = artifactFactory.createArtifactWithClassifier("org.eclipse.jdt", "ecj", ecjVersion, "jar", null); def ecjArtifact = artifactResolver.resolve(new org.apache.maven.artifact.resolver.ArtifactResolutionRequest()
296295 .setArtifact(ecjArtifactMeta)
297296 .setLocalRepository(session.localRepository)
298297 .setRemoteRepositories(project.remoteArtifactRepositories)
0 commit comments