搜索 Gradle 插件

版本 0.1.3(最新版)

0.1.3

创建日期:2024年3月9日。

“eclipse plus”插件扩展了标准eclipse插件的功能。

使用plugins DSL

plugins {
  id("io.github.dwarfley.eclipse-plus") version "0.1.3"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.dwarfley:gradle-eclipse-plus:0.1.3")
  }
}

apply(plugin = "io.github.dwarfley.eclipse-plus")

使用plugins DSL

plugins {
  id "io.github.dwarfley.eclipse-plus" version "0.1.3"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.dwarfley:gradle-eclipse-plus:0.1.3"
  }
}

apply plugin: "io.github.dwarfley.eclipse-plus"

学习如何应用于子项目插件