搜索Gradle插件

版本 0.0.2 (最新版本)

0.0.2

创建于2015年8月27日。

我为个人项目创建的标准的Gradle模板

使用插件DSL

plugins {
  id("co.tomlee.standard.java.service") version "0.0.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.co.tomlee.gradle.plugins:gradle-standard-plugin:0.0.2")
  }
}

apply(plugin = "co.tomlee.standard.java.service")

使用插件DSL

plugins {
  id "co.tomlee.standard.java.service" version "0.0.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.co.tomlee.gradle.plugins:gradle-standard-plugin:0.0.2"
  }
}

apply plugin: "co.tomlee.standard.java.service"

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