搜索Gradle插件

net.swisstech.eclipseenhancer

Gradle插件,为Eclipse所需但初始git克隆时缺失或因某些原因删除的源文件夹创建源文件夹

https://github.com/stackmagic/gradle-eclipseenhancer

版本 1.0.0(最新版)

1.0.0

创建于2014年11月10日。

Gradle插件,为Eclipse所需但初始git克隆时缺失或因某些原因删除的源文件夹创建源文件夹

使用插件DSL

plugins {
  id("net.swisstech.eclipseenhancer") version "1.0.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.swisstech:gradle-eclipseenhancer:1.0.0")
  }
}

apply(plugin = "net.swisstech.eclipseenhancer")

使用插件DSL

plugins {
  id "net.swisstech.eclipseenhancer" version "1.0.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.swisstech:gradle-eclipseenhancer:1.0.0"
  }
}

apply plugin: "net.swisstech.eclipseenhancer"

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