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 a4f2f60 commit 48096bdCopy full SHA for 48096bd
gradle/plugins/common/src/main/kotlin/junitbuild.java-library-conventions.gradle.kts
@@ -57,6 +57,11 @@ eclipse {
57
// Exclude Foo.java and FooBar.java in the modules-2500 folder.
58
it.excludes.add("**/Foo*.java")
59
}
60
+ if (project.name == "jupiter-tests" && it.path == "src/test/java") {
61
+ // Exclude test classes that depend on compiled Kotlin code.
62
+ it.excludes.add("**/AtypicalJvmMethodNameTests.java")
63
+ it.excludes.add("**/TestInstanceLifecycleKotlinTests.java")
64
+ }
65
66
entries.filterIsInstance<ProjectDependency>().forEach {
67
it.entryAttributes.remove("module")
0 commit comments