com.github.gustavohssantorio.credentials
所有者: Gu234tavo Santorio
该插件可访问settings.xml中的所有凭证并在build.gradle中使用
https://github.com/GustavoHSSantorio
来源: https://github.com/GustavoHSSantorio/AccessToken
使用 plugins DSL
plugins {
id("com.github.gustavohssantorio.credentials") version "1.0.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.gustavohssantorio:credentials:1.0.0")
}
}
apply(plugin = "com.github.gustavohssantorio.credentials")
使用 plugins DSL
plugins {
id "com.github.gustavohssantorio.credentials" version "1.0.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.gustavohssantorio:credentials:1.0.0"
}
}
apply plugin: "com.github.gustavohssantorio.credentials"