host.bytedance.kotlin-cacheable
Owner: zsqw123
Plugin for cache all logic in kotlin through KCP.
https://github.com/zsqw123/kotlin-cacheable
Sources: https://github.com/zsqw123/kotlin-cacheable
Version 0.0.5-beta
0.0.5-beta
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"