io.xol.ecj9
Owner:
Hugo Devillers
Gradle plugin for using the eclipse compiler for java (ecj) for compiling java files instead of javac
https://github.com/Hugobros3/gradle-eclipse-compiler-plugin
Version 1.2.0-SNAPSHOT (latest)
Created 22 February 2018.
Gradle plugin for using the eclipse compiler for java (ecj) for compiling java files instead of javac
Using the plugins DSL:
plugins {
id("io.xol.ecj9") version "1.2.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.xol:gradle-eclipse-compiler-plugin:1.2.0-SNAPSHOT")
}
}
apply(plugin = "io.xol.ecj9")
Using the plugins DSL:
plugins {
id "io.xol.ecj9" version "1.2.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.xol:gradle-eclipse-compiler-plugin:1.2.0-SNAPSHOT"
}
}
apply plugin: "io.xol.ecj9"