Search Gradle plugins

Version 3.0.2 (latest)

Created 14 August 2015.

Replaces dynamic versions with the actual resolved versions

Using the plugins DSL:

plugins {
  id("nebula.resolved-pom") version "3.0.2"
}

Using legacy plugin application:

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

apply(plugin = "nebula.resolved-pom")

Using the plugins DSL:

plugins {
  id "nebula.resolved-pom" version "3.0.2"
}

Using legacy plugin application:

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

apply plugin: "nebula.resolved-pom"

Learn how to apply plugins to subprojects