name.remal.fast-annotation-processors-in-kotlin
所有者: 谢明·列文
为某些 Java 注解处理器提供实现的插件。在 apt 被禁用时或在使用没有注解处理支持的 JVM 语言时很有用。
https://gitlab.com/remal/gradle-plugins
源代码: https://gitlab.com/remal/gradle-plugins.git
版本 0.32.1(最新版本)
0.32.1
创建于 2017 年 10 月 16 日。
为某些 Java 注解处理器提供实现的插件。在 apt 被禁用时或在使用没有注解处理支持的 JVM 语言时很有用。
使用 插件 DSL
plugins {
id("name.remal.fast-annotation-processors-in-kotlin") version "0.32.1"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.name.remal:gradle-plugins:0.32.1")
}
}
apply(plugin = "name.remal.fast-annotation-processors-in-kotlin")
使用 插件 DSL
plugins {
id "name.remal.fast-annotation-processors-in-kotlin" version "0.32.1"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.name.remal:gradle-plugins:0.32.1"
}
}
apply plugin: "name.remal.fast-annotation-processors-in-kotlin"