Skip to content

Commit 3194419

Browse files
committed
Remove Groovy Nature from Eclipse projects
This commit removes the Groovy Nature from Eclipse projects, since we do not want to require that the Groovy plugin is installed in order for developers to work with the code base in Eclipse IDE.
1 parent ac0b9c1 commit 3194419

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

junit-vintage-engine/junit-vintage-engine.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,9 @@ eclipse {
103103
// Avoid exposing test resources to dependent projects
104104
containsTestFixtures = false
105105
}
106+
project {
107+
// Remove Groovy Nature, since we don't require a Groovy plugin for Eclipse
108+
// in order for developers to work with the code base.
109+
natures.removeAll { it == "org.eclipse.jdt.groovy.core.groovyNature" }
110+
}
106111
}

jupiter-tests/jupiter-tests.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,9 @@ eclipse {
5555
}
5656
}
5757
}
58+
project {
59+
// Remove Groovy Nature, since we don't require a Groovy plugin for Eclipse
60+
// in order for developers to work with the code base.
61+
natures.removeAll { it == "org.eclipse.jdt.groovy.core.groovyNature" }
62+
}
5863
}

0 commit comments

Comments
 (0)