nebula.source-refactor
Owner: Nebula Plugins
Pluggable and distributed refactoring tool for Java source code
https://github.com/nebula-plugins/java-source-refactor
Sources: https://github.com/nebula-plugins/java-source-refactor.git
Version 0.2.0
0.2.0
Created 10 August 2016.
Pluggable and distributed refactoring tool for Java source code
Using the plugins DSL:
plugins {
id("nebula.source-refactor") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.devinsight:java-source-refactor:0.2.0")
}
}
apply(plugin = "nebula.source-refactor")
Using the plugins DSL:
plugins {
id "nebula.source-refactor" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.devinsight:java-source-refactor:0.2.0"
}
}
apply plugin: "nebula.source-refactor"