com.cdk.recreation.gradle.code-artifact-plugin
所有者: jarad duersch
通过执行访问cli的过程来添加一个获取AWS codeArtficat密码的方法
https://github.com/jdtommy/code-artifact-plugin
来源: https://github.com/jdtommy/code-artifact-plugin.git
版本 1.0(最新版)
1.0
创建于2021年1月13日。
通过执行访问cli的过程来添加一个获取AWS codeArtficat密码的方法
使用插件DSL
plugins {
id("com.cdk.recreation.gradle.code-artifact-plugin") version "1.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.cdk.recreation.gradle.code-artifact-plugin:CodeArtifactGradlePlugin:1.0")
}
}
apply(plugin = "com.cdk.recreation.gradle.code-artifact-plugin")
使用插件DSL
plugins {
id "com.cdk.recreation.gradle.code-artifact-plugin" version "1.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.cdk.recreation.gradle.code-artifact-plugin:CodeArtifactGradlePlugin:1.0"
}
}
apply plugin: "com.cdk.recreation.gradle.code-artifact-plugin"