We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e27800a + 2fc0016 commit bffde82Copy full SHA for bffde82
spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle
@@ -100,3 +100,15 @@ compileJava {
100
options.compilerArgs += ['-Xlint:-sunapi', '-XDenableSunApiLintControl']
101
}
102
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