We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0b4dc7b + bffde82 commit ba56bbeCopy full SHA for ba56bbe
spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle
@@ -89,3 +89,15 @@ compileJava {
89
options.compilerArgs += ['-Xlint:-sunapi', '-XDenableSunApiLintControl']
90
}
91
92
+
93
+plugins.withType(EclipsePlugin) {
94
+ eclipse {
95
+ classpath.file { merger ->
96
+ merger.beforeMerged { content ->
97
+ if (content instanceof org.gradle.plugins.ide.eclipse.model.Classpath) {
98
+ content.entries.add(new org.gradle.plugins.ide.eclipse.model.SourceFolder("build/generated-resources/main", "bin/main"))
99
+ }
100
101
102
103
+}
0 commit comments