io.github.5hmlA.dev.ksp
Owner: 江祖贇
Simplify for ksp develop
https://github.com/5hmlA/conventions
Sources: https://github.com/5hmlA/conventions
Using the plugins DSL:
plugins {
id("io.github.5hmlA.dev.ksp") version "2.1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.5hmlA:conventions:2.1.8")
}
}
apply(plugin = "io.github.5hmlA.dev.ksp")
Using the plugins DSL:
plugins {
id "io.github.5hmlA.dev.ksp" version "2.1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.5hmlA:conventions:2.1.8"
}
}
apply plugin: "io.github.5hmlA.dev.ksp"