Skip to content

Commit a1037ee

Browse files
Apply the workaround for the License Report issue
jk1/Gradle-License-Report#337
1 parent 3f4ffe6 commit a1037ee

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

java-tests/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

proto/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)