Skip to content

Commit eaa4fcc

Browse files
Suppressed gradle-git-properties - see n0mer/gradle-git-properties#175
1 parent cc09840 commit eaa4fcc

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

build.gradle.kts

+5-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ apply(plugin = "jacoco")
1818
apply(plugin = "net.ltgt.errorprone")
1919

2020
if (project.parent == null) {
21-
// If this project is included as a submodule, this plugin chokes on non-existing ./.git
22-
// and produces very annoying unsuppressable output
23-
// See https://github.com/n0mer/gradle-git-properties/issues/175
24-
apply(plugin = libs.plugins.git.properties.get().pluginId)
21+
// If this project is included as a submodule or is in a Git worktree, this plugin chokes on non-existing ./.git
22+
// and produces very long and annoying unsuppressable output.
23+
24+
// See https://github.com/n0mer/gradle-git-properties/issues/175 - will re-enable when fixed. Not worth it now.
25+
// apply(plugin = libs.plugins.git.properties.get().pluginId)
2526
}
2627

2728
tasks.compileJava {

0 commit comments

Comments
 (0)