de.set.ecj
Owner:
Niklas Walter
Gradle plugin for using the eclipse compiler for java (ecj) for compiling java files instead of javac
https://github.com/TwoStone/gradle-eclipse-compiler-plugin
Sources: https://github.com/TwoStone/gradle-eclipse-compiler-plugin
Version 1.4.1 (latest)
Created 17 January 2019.
Gradle plugin for using the eclipse compiler for java (ecj) for compiling java files instead of javac
Add this plugin to your build using the plugins DSL:
plugins {
id("de.set.ecj") version "1.4.1"
}
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("de.set.ecj:de.set.ecj.gradle.plugin:1.4.1") }
It can then be applied in the precompiled script plugin:plugins { id("de.set.ecj") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.set.ecj:de.set.ecj.gradle.plugin:1.4.1") } } apply(plugin = "de.set.ecj")
- Applying plugins to all subprojects .