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 541837b commit 8320dfeCopy full SHA for 8320dfe
plugin/build.gradle.kts
@@ -1,4 +1,5 @@
1
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
2
+import com.gradle.publish.PublishTask
3
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
4
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
5
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
@@ -204,6 +205,10 @@ tasks.named("githubRelease").configure {
204
205
dependsOn(createReleaseTag)
206
}
207
208
+tasks.withType(PublishTask::class).configureEach {
209
+ notCompatibleWithConfigurationCache("$name task does not support configuration caching")
210
+}
211
+
212
abstract class CreateGitTag : DefaultTask() {
213
214
@get:Input abstract val tagName: Property<String>
0 commit comments