搜索 Gradle 插件

版本 0.2.0(最新版本)

0.2.0

创建于 2023 年 3 月 6 日。

一个用于使用 Eclipse 编译器(ECJ)编译 Java 文件的 Gradle 插件

使用 插件 DSL

plugins {
  id("io.github.themrmilchmann.ecj") version "0.2.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.themrmilchmann.gradle.ecj:gradle-ecj:0.2.0")
  }
}

apply(plugin = "io.github.themrmilchmann.ecj")

使用 插件 DSL

plugins {
  id "io.github.themrmilchmann.ecj" version "0.2.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.themrmilchmann.gradle.ecj:gradle-ecj:0.2.0"
  }
}

apply plugin: "io.github.themrmilchmann.ecj"

了解如何将插件应用到子项目中