Search Gradle plugins

Version 1.3.1 (latest)

Created 13 May 2022.

Gradle Plugin to work against Artifactorys REST Api

Using the plugins DSL:

plugins {
  id("com.github.gradle.artifactory.rest") version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.cdancy:gradle-artifactory-rest-plugin:1.3.1")
  }
}

apply(plugin = "com.github.gradle.artifactory.rest")

Using the plugins DSL:

plugins {
  id "com.github.gradle.artifactory.rest" version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.cdancy:gradle-artifactory-rest-plugin:1.3.1"
  }
}

apply plugin: "com.github.gradle.artifactory.rest"

Learn how to apply plugins to subprojects