Search Gradle plugins

Version 1.3.5 (latest)

Created 10 July 2017.

XebiaLabs dependency plugin

Using the plugins DSL:

plugins {
  id("com.xebialabs.dependency") version "1.3.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.xebialabs:gradle-xl-dependency-plugin:1.3.5")
  }
}

apply(plugin = "com.xebialabs.dependency")

Using the plugins DSL:

plugins {
  id "com.xebialabs.dependency" version "1.3.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.xebialabs:gradle-xl-dependency-plugin:1.3.5"
  }
}

apply plugin: "com.xebialabs.dependency"

Learn how to apply plugins to subprojects