it.unibo.collektive.collektive-plugin
所有者: Collektive
此插件启用 Collektive Kotlin 编译器插件。它使 Collektive DSL 中的聚合操作自动对齐。
https://github.com/Collektive/collektive
来源:https://github.com/Collektive/collektive.git
版本 10.1.3 (最新)
10.1.3
创建于 2024 年 8 月 6 日。
Gradle 对 Collektive Kotlin 编译器插件的支持,执行 Kotlin 源代码的自动聚合对齐。
使用plugins DSL
plugins {
id("it.unibo.collektive.collektive-plugin") version "10.1.3"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("it.unibo.collektive:gradle-plugin:10.1.3")
}
}
apply(plugin = "it.unibo.collektive.collektive-plugin")
使用plugins DSL
plugins {
id "it.unibo.collektive.collektive-plugin" version "10.1.3"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "it.unibo.collektive:gradle-plugin:10.1.3"
}
}
apply plugin: "it.unibo.collektive.collektive-plugin"