info.boaventura.maven.credentials
所有者: Valtoni Boaventura
这是一个从maven凭证获取settings.xml的插件。
https://github.com/valtoni/gradle-plugin-maven-pass
来源: https://github.com/valtoni/gradle-plugin-maven-pass
版本 1.0.0(最新版)
1.0.0
创建于 2016年5月11日。
这是一个从maven凭证获取settings.xml的插件。
使用 插件DSL
plugins {
id("info.boaventura.maven.credentials") version "1.0.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.info.boaventura:gradle-plugin-maven-pass:1.0.0")
}
}
apply(plugin = "info.boaventura.maven.credentials")
使用 插件DSL
plugins {
id "info.boaventura.maven.credentials" version "1.0.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.info.boaventura:gradle-plugin-maven-pass:1.0.0"
}
}
apply plugin: "info.boaventura.maven.credentials"