cn.bestwu.propdeps-eclipse
Owner: Peter Wu
propdeps-plugin
https://bitbucket.org/bestwu/propdeps-plugin
Sources: https://bitbucket.org/bestwu/propdeps-plugin
Using the plugins DSL:
plugins {
id("cn.bestwu.propdeps-eclipse") version "0.0.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.cn.bestwu.gradle:propdeps-plugin:0.0.10")
}
}
apply(plugin = "cn.bestwu.propdeps-eclipse")
Using the plugins DSL:
plugins {
id "cn.bestwu.propdeps-eclipse" version "0.0.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.cn.bestwu.gradle:propdeps-plugin:0.0.10"
}
}
apply plugin: "cn.bestwu.propdeps-eclipse"