com.github.opengl-BOBO.annotation-processing-eclipse
所有者: opengl-8080
生成可用于Pluggable Annotation Processing API的Eclipse配置的Gradle插件。
https://github.com/opengl-8080/annotation-processing-eclipse-gradle-plugin
源代码: https://github.com/opengl-8080/annotation-processing-eclipse-gradle-plugin
版本 1.0.0(最新版)
1.0.0
创建于2016年1月7日。
生成可用于Pluggable Annotation Processing API的Eclipse配置的Gradle插件。
使用plugins DSL
plugins {
id("com.github.opengl-BOBO.annotation-processing-eclipse") version "1.0.0"
}
使用传统插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.opengl-8080:annotation-processing-eclipse-gradle-plugin:1.0.0")
}
}
apply(plugin = "com.github.opengl-BOBO.annotation-processing-eclipse")
使用plugins DSL
plugins {
id "com.github.opengl-BOBO.annotation-processing-eclipse" version "1.0.0"
}
使用传统插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.opengl-8080:annotation-processing-eclipse-gradle-plugin:1.0.0"
}
}
apply plugin: "com.github.opengl-BOBO.annotation-processing-eclipse"