Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 07 January 2016.

Gradle plugin that generate eclipse configuration for Pluggable Annotation Processing API.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.opengl-BOBO.annotation-processing-eclipse") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      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")
  • Applying plugins to all subprojects .