org.inferred.processors
Owner: Palantir Technologies
Clean integration of Java 6+ annotation processors with the Eclipse and IDEA plugins
https://github.com/palantir/gradle-processors
Sources: https://github.com/palantir/gradle-processors
Version 1.0.2-beta1
1.0.2-beta1
Created 21 September 2015.
Clean integration of Java 6+ annotation processors with the Eclipse and IDEA plugins
Using the plugins DSL:
plugins {
id("org.inferred.processors") version "1.0.2-beta1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.inferred:gradle-processors:1.0.2-beta1")
}
}
apply(plugin = "org.inferred.processors")
Using the plugins DSL:
plugins {
id "org.inferred.processors" version "1.0.2-beta1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.inferred:gradle-processors:1.0.2-beta1"
}
}
apply plugin: "org.inferred.processors"