com.diffplug.eclipse.apt
                  Owner:
                  
                    
                    Ned Twigg
                  
                
Fixes eclipse projects to work with gradle annotation processing
https://github.com/diffplug/goomph
Sources: https://github.com/diffplug/goomph.git
Version 3.24.0
Created 04 August 2020.
                Fixes eclipse projects to work with gradle annotation processing
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.diffplug.eclipse.apt") version "3.24.0"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.diffplug.eclipse.apt:com.diffplug.eclipse.apt.gradle.plugin:3.24.0") }It can then be applied in the precompiled script plugin:plugins { id("com.diffplug.eclipse.apt") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.diffplug.eclipse.apt:com.diffplug.eclipse.apt.gradle.plugin:3.24.0") } } apply(plugin = "com.diffplug.eclipse.apt")
- Applying plugins to all subprojects .