搜索 Gradle 插件

版本 0.1.0 (最新版)

0.1.0

创建于 2020年10月21日。

由于 JCenter 将永久重定向到 Maven Central,且此插件仅使用可在 JCenter 找到的依赖项,因此此插件版本将不再解析。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact sshoogr 项目的父构建插件

使用 插件 DSL

plugins {
  id("com.aestasit.sshoogr.gradle.sshoogr-parentbuild") version "0.1.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.aestasit.sshoogr.gradle:sshoogr-parentbuild:0.1.0")
  }
}

apply(plugin = "com.aestasit.sshoogr.gradle.sshoogr-parentbuild")

使用 插件 DSL

plugins {
  id "com.aestasit.sshoogr.gradle.sshoogr-parentbuild" version "0.1.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.aestasit.sshoogr.gradle:sshoogr-parentbuild:0.1.0"
  }
}

apply plugin: "com.aestasit.sshoogr.gradle.sshoogr-parentbuild"

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