Search Gradle plugins

Version 0.6.2 (latest)

Created 05 October 2016.

Pluggable and distributed refactoring tool for Java source code

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "nebula.source-refactor"

Learn how to apply plugins to subprojects