com.proalpha.codeartifact
Owner: proALPHA GmbH
Gradle plugin to extend the gradle repository handler class with a closure to add a codeartifact repository.
https://github.com/proALPHA/gradle-codeartifact-plugin/blob/main/README.md
Sources: https://github.com/proALPHA/gradle-codeartifact-plugin
Version 1.0.2 (latest)
1.0.2
Created 09 August 2024.
Gradle plugin to extend the gradle repository handler class with a closure to add a codeartifact repository.
Using the plugins DSL:
plugins {
id("com.proalpha.codeartifact") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.proalpha:plugin:1.0.2")
}
}
apply(plugin = "com.proalpha.codeartifact")
Using the plugins DSL:
plugins {
id "com.proalpha.codeartifact" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.proalpha:plugin:1.0.2"
}
}
apply plugin: "com.proalpha.codeartifact"