com.github.amistad012oss.gradle.git-repo-plugin
所有者: [email protected]
此插件允许您将 Git 仓库作为 Maven 仓库添加,即使 Git 仓库是私有的,也类似于 CocoaPods 的工作方式。
https://github.com/amistad012oss/gradle-git-repo-plugin
来源:https://github.com/amistad012oss/gradle_git_repo_plugin
版本 1.0.0 (最新)
1.0.0
创建于 2020 年 4 月 7 日。
此插件允许您将 Git 仓库作为 Maven 仓库添加,即使 Git 仓库是私有的,也类似于 CocoaPods 的工作方式。
使用 插件 DSL
plugins {
id("com.github.amistad012oss.gradle.git-repo-plugin") version "1.0.0"
}
使用 旧的插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.amistad012oss.gradle:gradle-git-repo-plugin:1.0.0")
}
}
apply(plugin = "com.github.amistad012oss.gradle.git-repo-plugin")
使用 插件 DSL
plugins {
id "com.github.amistad012oss.gradle.git-repo-plugin" version "1.0.0"
}
使用 旧的插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.amistad012oss.gradle:gradle-git-repo-plugin:1.0.0"
}
}
apply plugin: "com.github.amistad012oss.gradle.git-repo-plugin"