Search Gradle plugins

Version 4.2.2 (latest)

Created 20 October 2015.

Built on top of nebula.maven-dependencies-jar, replacing dynamic versions with the actual resolved versions

Using the plugins DSL:

plugins {
  id("nebula.maven-resolved-dependencies-jar") version "4.2.2"
}

Using legacy plugin application:

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

apply(plugin = "nebula.maven-resolved-dependencies-jar")

Using the plugins DSL:

plugins {
  id "nebula.maven-resolved-dependencies-jar" version "4.2.2"
}

Using legacy plugin application:

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

apply plugin: "nebula.maven-resolved-dependencies-jar"

Learn how to apply plugins to subprojects