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.2 (latest)

1.2

Created 10 September 2024.

A Gradle plugin for fast Java files compiling using the Eclipse Compiler for Java (ECJ)

Add this plugin to your build using the plugins DSL:

plugins {
  id("host.anzo.gradle.ecj") version "1.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("host.anzo.gradle.ecj:gradle-ecj:1.2")
      }
    }
    
    apply(plugin = "host.anzo.gradle.ecj")
  • Applying plugins to all subprojects .