com.nexstra.ivypot.binary.base
所有者: 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.binary.base") 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.binary.base")
使用 plugins DSL
plugins {
id "com.nexstra.ivypot.binary.base" 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.binary.base"