Search Gradle plugins

Version 4.3.0

Created 26 October 2015.

Add component.war if a war project, add component.java otherwise, add dependencies

Using the plugins DSL:

plugins {
  id("nebula.ivy-dependencies") version "4.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:nebula-publishing-plugin:4.3.0")
  }
}

apply(plugin = "nebula.ivy-dependencies")

Using the plugins DSL:

plugins {
  id "nebula.ivy-dependencies" version "4.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:nebula-publishing-plugin:4.3.0"
  }
}

apply plugin: "nebula.ivy-dependencies"

Learn how to apply plugins to subprojects