Skip to content

Commit

Permalink
Merge branch '3.2.x' into 3.3.x
Browse files Browse the repository at this point in the history
Closes gh-42982
  • Loading branch information
wilkinsona committed Nov 4, 2024
2 parents e27800a + 2fc0016 commit bffde82
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
}
}
}
}
}

0 comments on commit bffde82

Please sign in to comment.