com.shysteph.intellij-stabilizer
Owner: Stephanie Miller
Orders dependencies in your .idea/module/*.iml files and configure dependencies to support external annotations
https://github.com/shysteph/intellij-stabilizer
Sources: https://github.com/nebula-plugins/intellij-stabilizer.git
Version 1.6.0 (latest)
1.6.0
Created 21 March 2017.
Orders dependencies in your .idea/module/*.iml files and configure dependencies to support external annotations
Using the plugins DSL:
plugins {
id("com.shysteph.intellij-stabilizer") version "1.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.shysteph:intellij-stabilizer:1.6.0")
}
}
apply(plugin = "com.shysteph.intellij-stabilizer")
Using the plugins DSL:
plugins {
id "com.shysteph.intellij-stabilizer" version "1.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.shysteph:intellij-stabilizer:1.6.0"
}
}
apply plugin: "com.shysteph.intellij-stabilizer"