com.github.opengl-BOBO.annotation-processing-eclipse
Owner:
opengl-8080
Gradle plugin that generate eclipse configuration for Pluggable Annotation Processing API.
https://github.com/opengl-8080/annotation-processing-eclipse-gradle-plugin
Sources: https://github.com/opengl-8080/annotation-processing-eclipse-gradle-plugin
Version 1.0.0 (latest)
Created 07 January 2016.
Gradle plugin that generate eclipse configuration for Pluggable Annotation Processing API.
Using the plugins DSL:
plugins {
id("com.github.opengl-BOBO.annotation-processing-eclipse") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/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")
Using the plugins DSL:
plugins {
id "com.github.opengl-BOBO.annotation-processing-eclipse" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/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"