搜索Gradle插件

版本 1.0.1(最新版)

1.0.1

创建于 2018年11月10日。

后端和前端开发的常见Gradle任务集

使用 插件DSL

plugins {
  id("all.shared.gradle.code-common-tasks") version "1.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.all.shared.gradle.code-common-tasks:code-common-tasks:1.0.1")
  }
}

apply(plugin = "all.shared.gradle.code-common-tasks")

使用 插件DSL

plugins {
  id "all.shared.gradle.code-common-tasks" version "1.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.all.shared.gradle.code-common-tasks:code-common-tasks:1.0.1"
  }
}

apply plugin: "all.shared.gradle.code-common-tasks"

学习如何将插件应用到子项目