Search Gradle plugins

Version 0.0.5-beta (latest)

Created 18 April 2024.

Plugin for cache all logic in kotlin through KCP.

Using the plugins DSL:

plugins {
  id("host.bytedance.kotlin-cacheable") version "0.0.5-beta"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("host.bytedance:kotlin-cacheable-gradle:0.0.5-beta")
  }
}

apply(plugin = "host.bytedance.kotlin-cacheable")

Using the plugins DSL:

plugins {
  id "host.bytedance.kotlin-cacheable" version "0.0.5-beta"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "host.bytedance:kotlin-cacheable-gradle:0.0.5-beta"
  }
}

apply plugin: "host.bytedance.kotlin-cacheable"

Learn how to apply plugins to subprojects