com.nexstra.ivypot
所有者: David Lee
一个用于离线或隔离环境的本地仓库的插件
https://github.com/DALDEI/ivypot-gradle-plugin
源码: https://github.com/DALDEI/ivypot-gradle-plugin.git
版本 0.11 (最新版)
0.11
创建日期:2019年12月8日。
一个用于离线或隔离环境的本地仓库的插件
使用 plugins DSL
plugins {
id("com.nexstra.ivypot") version "0.11"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.nexstra.gradle:ivypot:0.11")
}
}
apply(plugin = "com.nexstra.ivypot")
使用 plugins DSL
plugins {
id "com.nexstra.ivypot" version "0.11"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.nexstra.gradle:ivypot:0.11"
}
}
apply plugin: "com.nexstra.ivypot"