Search Gradle plugins

Version 1.0 (latest)

Created 13 January 2021.

Adds a method to get the AWS codeArtficat password by executing a process to acces the cli

Using the plugins DSL:

plugins {
  id("com.cdk.recreation.gradle.code-artifact-plugin") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.cdk.recreation.gradle.code-artifact-plugin:CodeArtifactGradlePlugin:1.0")
  }
}

apply(plugin = "com.cdk.recreation.gradle.code-artifact-plugin")

Using the plugins DSL:

plugins {
  id "com.cdk.recreation.gradle.code-artifact-plugin" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.cdk.recreation.gradle.code-artifact-plugin:CodeArtifactGradlePlugin:1.0"
  }
}

apply plugin: "com.cdk.recreation.gradle.code-artifact-plugin"

Learn how to apply plugins to subprojects