Skip to content

Commit b466987

Browse files
committed
Upgrade to Native Build Tools Plugin 0.10.5
Closes gh-44141
1 parent fcd33e8 commit b466987

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ junitJupiterVersion=5.10.5
1717
kotlinVersion=1.9.25
1818
mavenVersion=3.9.4
1919
mockitoVersion=5.11.0
20-
nativeBuildToolsVersion=0.10.4
20+
nativeBuildToolsVersion=0.10.5
2121
snakeYamlVersion=2.2
2222
springFrameworkVersion=6.1.17-SNAPSHOT
2323
springFramework60xVersion=6.0.23

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2024 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -21,7 +21,6 @@
2121
import java.util.Arrays;
2222
import java.util.List;
2323

24-
import com.fasterxml.jackson.annotation.JsonView;
2524
import com.fasterxml.jackson.core.Versioned;
2625
import com.fasterxml.jackson.databind.Module;
2726
import com.fasterxml.jackson.module.paramnames.ParameterNamesModule;
@@ -86,8 +85,9 @@ private List<File> pluginClasspath() {
8685
new File(pathOfJarContaining(HttpVersionPolicy.class)), new File(pathOfJarContaining(Module.class)),
8786
new File(pathOfJarContaining(Versioned.class)),
8887
new File(pathOfJarContaining(ParameterNamesModule.class)),
89-
new File(pathOfJarContaining(JsonView.class)), new File(pathOfJarContaining(Platform.class)),
90-
new File(pathOfJarContaining(Toml.class)), new File(pathOfJarContaining(Lexer.class)),
88+
new File(pathOfJarContaining("com.github.openjson.JSONObject")),
89+
new File(pathOfJarContaining(Platform.class)), new File(pathOfJarContaining(Toml.class)),
90+
new File(pathOfJarContaining(Lexer.class)),
9191
new File(pathOfJarContaining("org.graalvm.buildtools.gradle.NativeImagePlugin")),
9292
new File(pathOfJarContaining("org.graalvm.reachability.GraalVMReachabilityMetadataRepository")),
9393
new File(pathOfJarContaining("org.graalvm.buildtools.utils.SharedConstants")));

0 commit comments

Comments
 (0)