Merge branch '3.2.x' into 3.3.x

Closes gh-42982
This commit is contained in:
Andy Wilkinson 2024-11-04 13:15:12 +00:00
commit bffde8228e
1 changed files with 12 additions and 0 deletions

View File

@ -100,3 +100,15 @@ compileJava {
options.compilerArgs += ['-Xlint:-sunapi', '-XDenableSunApiLintControl']
}
}
plugins.withType(EclipsePlugin) {
eclipse {
classpath.file { merger ->
merger.beforeMerged { content ->
if (content instanceof org.gradle.plugins.ide.eclipse.model.Classpath) {
content.entries.add(new org.gradle.plugins.ide.eclipse.model.SourceFolder("build/generated-resources/main", "bin/main"))
}
}
}
}
}