Search Gradle plugins

Version 0.0.10 (latest)

Created 28 February 2017.

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"

Learn how to apply plugins to subprojects