搜索 Gradle 插件

com.github.skhatri.reposet

所有者: Suresh Khatri

此插件将为您的项目提供配置来设置存储库和插件。这可以用于添加个人或企业项目的默认存储库

https://github.com/skhatri/gradle-reposet-plugin

来源: https://github.com/skhatri/gradle-reposet-plugin.git

版本 0.1.2 (最新)

0.1.2

创建于 2021 年 9 月 17 日。

此插件将为您的项目提供配置来设置存储库和插件。这可以用于添加个人或企业项目的默认存储库

使用 插件 DSL

plugins {
  id("com.github.skhatri.reposet") version "0.1.2"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.skhatri:gradle-reposet-plugin:0.1.2")
  }
}

apply(plugin = "com.github.skhatri.reposet")

使用 插件 DSL

plugins {
  id "com.github.skhatri.reposet" version "0.1.2"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.skhatri:gradle-reposet-plugin:0.1.2"
  }
}

apply plugin: "com.github.skhatri.reposet"

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