host.anzo.gradle.ecj
Owner:
Anton Lasevich
A Gradle plugin for fast Java files compiling using the Eclipse Compiler for Java (ECJ)
https://github.com/AN3Orik/gradle-ecj
Sources: https://github.com/AN3Orik/gradle-ecj.git
Version 1.4 (latest)
Created 13 December 2024.
A Gradle plugin for fast Java files compiling using the Eclipse Compiler for Java (ECJ)
Add this plugin to your build using the plugins DSL:
plugins {
id("host.anzo.gradle.ecj") version "1.4"
}
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("host.anzo.gradle.ecj:host.anzo.gradle.ecj.gradle.plugin:1.4") }
It can then be applied in the precompiled script plugin:plugins { id("host.anzo.gradle.ecj") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("host.anzo.gradle.ecj:host.anzo.gradle.ecj.gradle.plugin:1.4") } } apply(plugin = "host.anzo.gradle.ecj")
- Applying plugins to all subprojects .