搜索 Gradle 插件

版本 1.8(最新版)

1.8

创建日期:2021年2月5日。

快速设置CN仓库镜像。(快速添加国内库镜像,如同阿里云镜像)

使用插件DSL

plugins {
  id("com.robothy.cn-repo") version "1.8"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.robothy:cn-repo:1.8")
  }
}

apply(plugin = "com.robothy.cn-repo")

使用插件DSL

plugins {
  id "com.robothy.cn-repo" version "1.8"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.robothy:cn-repo:1.8"
  }
}

apply plugin: "com.robothy.cn-repo"

学习如何应用于子项目