Skip to content

Commit fb51004

Browse files
committed
Look in the right place for plugin's classes during integration tests
See gh-9516
1 parent 36120d7 commit fb51004

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/testkit

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private void after() {
111111
}
112112

113113
private String pluginClasspath() {
114-
return absolutePath("bin") + "," + absolutePath("build/classes/main") + ","
114+
return absolutePath("bin") + "," + absolutePath("build/classes/java/main") + ","
115115
+ absolutePath("build/resources/main") + ","
116116
+ pathOfJarContaining(LaunchScript.class) + ","
117117
+ pathOfJarContaining(ClassVisitor.class) + ","

0 commit comments

Comments
 (0)