Search Gradle plugins

host.anzo.gradle.ecj

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.1

1.1

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.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("host.anzo.gradle.ecj:gradle-ecj:1.1")
  }
}

apply(plugin = "host.anzo.gradle.ecj")

Using the plugins DSL:

plugins {
  id "host.anzo.gradle.ecj" version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "host.anzo.gradle.ecj:gradle-ecj:1.1"
  }
}

apply plugin: "host.anzo.gradle.ecj"

Learn how to apply plugins to subprojects