Browse Source

Upgrade to Native Build Tools Plugin 0.10.5

Closes gh-44141
pull/44134/head
Stéphane Nicoll 11 months ago
parent
commit
b46698774d
  1. 2
      gradle.properties
  2. 8
      spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/testkit/PluginClasspathGradleBuild.java

2
gradle.properties

@ -17,7 +17,7 @@ junitJupiterVersion=5.10.5 @@ -17,7 +17,7 @@ junitJupiterVersion=5.10.5
kotlinVersion=1.9.25
mavenVersion=3.9.4
mockitoVersion=5.11.0
nativeBuildToolsVersion=0.10.4
nativeBuildToolsVersion=0.10.5
snakeYamlVersion=2.2
springFrameworkVersion=6.1.17-SNAPSHOT
springFramework60xVersion=6.0.23

8
spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/testkit/PluginClasspathGradleBuild.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2012-2024 the original author or authors.
* Copyright 2012-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -21,7 +21,6 @@ import java.io.IOException; @@ -21,7 +21,6 @@ import java.io.IOException;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonView;
import com.fasterxml.jackson.core.Versioned;
import com.fasterxml.jackson.databind.Module;
import com.fasterxml.jackson.module.paramnames.ParameterNamesModule;
@ -86,8 +85,9 @@ public class PluginClasspathGradleBuild extends GradleBuild { @@ -86,8 +85,9 @@ public class PluginClasspathGradleBuild extends GradleBuild {
new File(pathOfJarContaining(HttpVersionPolicy.class)), new File(pathOfJarContaining(Module.class)),
new File(pathOfJarContaining(Versioned.class)),
new File(pathOfJarContaining(ParameterNamesModule.class)),
new File(pathOfJarContaining(JsonView.class)), new File(pathOfJarContaining(Platform.class)),
new File(pathOfJarContaining(Toml.class)), new File(pathOfJarContaining(Lexer.class)),
new File(pathOfJarContaining("com.github.openjson.JSONObject")),
new File(pathOfJarContaining(Platform.class)), new File(pathOfJarContaining(Toml.class)),
new File(pathOfJarContaining(Lexer.class)),
new File(pathOfJarContaining("org.graalvm.buildtools.gradle.NativeImagePlugin")),
new File(pathOfJarContaining("org.graalvm.reachability.GraalVMReachabilityMetadataRepository")),
new File(pathOfJarContaining("org.graalvm.buildtools.utils.SharedConstants")));

Loading…
Cancel
Save