mnm.gradle.ap-ide
Owner:
Matthew Messinger
Enables annotation processing in Eclipse and IntelliJ
https://github.com/killjoy1221/ap-ide
Sources: https://github.com/killjoy1221/ap-ide
Version 1.0.5 (latest)
Created 05 April 2016.
Enables annotation processing in Eclipse and IntelliJ
Add this plugin to your build using the plugins DSL:
plugins {
id("mnm.gradle.ap-ide") version "1.0.5"
}
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("mnm.gradle.ap-ide:mnm.gradle.ap-ide.gradle.plugin:1.0.5") }
It can then be applied in the precompiled script plugin:plugins { id("mnm.gradle.ap-ide") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("mnm.gradle.ap-ide:mnm.gradle.ap-ide.gradle.plugin:1.0.5") } } apply(plugin = "mnm.gradle.ap-ide")
- Applying plugins to all subprojects .