Search Gradle plugins

Version 5.52.0

Created 13 July 2022.

Kotlin/JS worker configuration

Using the plugins DSL:

plugins {
  id("io.github.turansky.kfc.worker") version "5.52.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.turansky.kfc:kfc-gradle-plugin:5.52.0")
  }
}

apply(plugin = "io.github.turansky.kfc.worker")

Using the plugins DSL:

plugins {
  id "io.github.turansky.kfc.worker" version "5.52.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.turansky.kfc:kfc-gradle-plugin:5.52.0"
  }
}

apply plugin: "io.github.turansky.kfc.worker"

Learn how to apply plugins to subprojects