Search Gradle plugins

com.proalpha.codeartifact

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.1 (latest)

Created 14 March 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.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.proalpha:plugin:1.0.1")
  }
}

apply(plugin = "com.proalpha.codeartifact")

Using the plugins DSL:

plugins {
  id "com.proalpha.codeartifact" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.proalpha:plugin:1.0.1"
  }
}

apply plugin: "com.proalpha.codeartifact"

Learn how to apply plugins to subprojects