io.github.themrmilchmann.ecj
Owner:
Leon Linhart
A Gradle plugin for using the Eclipse Compiler for Java (ECJ) for compiling Java files
https://github.com/TheMrMilchmann/gradle-ecj
Sources: https://github.com/TheMrMilchmann/gradle-ecj.git
Version 0.2.0 (latest)
Created 06 March 2023.
A Gradle plugin for using the Eclipse Compiler for Java (ECJ) for compiling Java files
Using the plugins DSL:
plugins {
id("io.github.themrmilchmann.ecj") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.themrmilchmann.gradle.ecj:gradle-ecj:0.2.0")
}
}
apply(plugin = "io.github.themrmilchmann.ecj")
Using the plugins DSL:
plugins {
id "io.github.themrmilchmann.ecj" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.themrmilchmann.gradle.ecj:gradle-ecj:0.2.0"
}
}
apply plugin: "io.github.themrmilchmann.ecj"