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.
1 parent ffe9f3d commit 1812df4Copy full SHA for 1812df4
gradle/plugins/common/src/main/kotlin/junitbuild.java-library-conventions.gradle.kts
@@ -53,6 +53,8 @@ eclipse {
53
// Java Template Engine (JTE) which is used to generate the JRE enum and
54
// dependent tests.
55
entries.removeIf { it is ProjectDependency && it.path.equals("/code-generator-model") }
56
+ // Remove classpath entries for anything used by the Gradle Wrapper.
57
+ entries.removeIf { it is Library && it.path.contains("gradle/wrapper") }
58
entries.filterIsInstance<SourceFolder>().forEach {
59
it.excludes.add("**/module-info.java")
60
}
0 commit comments