Search Gradle plugins

Version 0.5.0

Created 27 September 2016.

Pluggable and distributed refactoring tool for Java source code

Using the plugins DSL:

plugins {
  id("nebula.source-refactor") version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.devinsight:java-source-refactor:0.5.0")
  }
}

apply(plugin = "nebula.source-refactor")

Using the plugins DSL:

plugins {
  id "nebula.source-refactor" version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.devinsight:java-source-refactor:0.5.0"
  }
}

apply plugin: "nebula.source-refactor"

Learn how to apply plugins to subprojects