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 8b0cdaf commit 5fb43b6Copy full SHA for 5fb43b6
java/gradle/build.gradle.kts
@@ -44,7 +44,8 @@ publishing{
44
}
45
46
47
-
+// Grab the group before running tests, since the group is used in the test configuration and may be modified by the publishing configuration
48
+val testGroup = group.toString()
49
tasks.withType<Test>().configureEach {
- systemProperty("project.group", group ?: "org.processing")
50
+ systemProperty("project.group", testGroup)
51
0 commit comments