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.2 (latest)
1.2
Created 10 September 2024.
A Gradle plugin for fast Java files compiling using the Eclipse Compiler for Java (ECJ)
Using the plugins DSL:
plugins {
id("host.anzo.gradle.ecj") version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("host.anzo.gradle.ecj:gradle-ecj:1.2")
}
}
apply(plugin = "host.anzo.gradle.ecj")
Using the plugins DSL:
plugins {
id "host.anzo.gradle.ecj" version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "host.anzo.gradle.ecj:gradle-ecj:1.2"
}
}
apply plugin: "host.anzo.gradle.ecj"