Skip to content

Commit bffde82

Browse files
committed
Merge branch '3.2.x' into 3.3.x
Closes gh-42982
2 parents e27800a + 2fc0016 commit bffde82

File tree

1 file changed

+12
-0
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-loader-tools

1 file changed

+12
-0
lines changed

spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle

+12
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,15 @@ compileJava {
100100
options.compilerArgs += ['-Xlint:-sunapi', '-XDenableSunApiLintControl']
101101
}
102102
}
103+
104+
plugins.withType(EclipsePlugin) {
105+
eclipse {
106+
classpath.file { merger ->
107+
merger.beforeMerged { content ->
108+
if (content instanceof org.gradle.plugins.ide.eclipse.model.Classpath) {
109+
content.entries.add(new org.gradle.plugins.ide.eclipse.model.SourceFolder("build/generated-resources/main", "bin/main"))
110+
}
111+
}
112+
}
113+
}
114+
}

0 commit comments

Comments
 (0)