We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe758b1 commit cc83ef5Copy full SHA for cc83ef5
1 file changed
app/hcc-springboot/build.gradle.kts
@@ -1,3 +1,4 @@
1
+import com.google.cloud.tools.jib.gradle.JibTask
2
import com.google.cloud.tools.jib.gradle.extension.layerfilter.Configuration
3
4
buildscript {
@@ -105,3 +106,9 @@ jib {
105
106
tasks.check {
107
dependsOn(tasks.named<JacocoReport>("testCodeCoverageReport"))
108
}
109
+
110
+// Workaround source: https://github.com/GoogleContainerTools/jib/issues/3132#issuecomment-1933748189
111
+// This issue has been dragging on since 2021-03-12, Gradle v.6.8.1 <facepalm>
112
+tasks.withType<JibTask>().configureEach {
113
+ notCompatibleWithConfigurationCache("because https://github.com/GoogleContainerTools/jib/issues/3132")
114
+}
0 commit comments