File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -116,3 +116,9 @@ fun Project.applyPlugins() {
116116 }
117117 }
118118}
119+
120+ // Temporarily disable this task for this parent Gradle project.
121+ // The tasks in its children still should execute fine.
122+ // See more [here](https://github.com/jk1/Gradle-License-Report/issues/337).
123+ val generateLicenseReport by tasks.getting
124+ generateLicenseReport.enabled = false
Original file line number Diff line number Diff line change @@ -65,3 +65,9 @@ subprojects {
6565 Protobuf .libs.forEach { implementation(it) }
6666 }
6767}
68+
69+ // Temporarily disable this task for this parent Gradle project.
70+ // The tasks in its children still should execute fine.
71+ // See more [here](https://github.com/jk1/Gradle-License-Report/issues/337).
72+ val generateLicenseReport by tasks.getting
73+ generateLicenseReport.enabled = false
You can’t perform that action at this time.
0 commit comments