Search Gradle plugins

com.shysteph.intellij-stabilizer

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)

Created 21 March 2017.

Orders dependencies in your .idea/module/*.iml files and configure dependencies to support external annotations

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.shysteph.intellij-stabilizer") version "1.6.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.shysteph.intellij-stabilizer:com.shysteph.intellij-stabilizer.gradle.plugin:1.6.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.shysteph.intellij-stabilizer")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.shysteph.intellij-stabilizer:com.shysteph.intellij-stabilizer.gradle.plugin:1.6.0")
      }
    }
    
    apply(plugin = "com.shysteph.intellij-stabilizer")
  • Applying plugins to all subprojects .