Search Gradle plugins

name.remal.idea-external-annotations

Plugin that adds external annotations link (file://$USER_HOME$/idea-external-annotations) to IDEA project libraries.

https://remal.gitlab.io/gradle-plugins/plugins/name.remal.idea-external-annotations/

Sources: https://gitlab.com/remal/gradle-plugins

Version 0.13.2

Created 25 August 2017.

Plugin that adds external annotations link (file://$USER_HOME$/idea-external-annotations) to IDEA project libraries.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.idea-external-annotations") version "0.13.2"
}

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("name.remal.idea-external-annotations:name.remal.idea-external-annotations.gradle.plugin:0.13.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("name.remal.idea-external-annotations")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal.idea-external-annotations:name.remal.idea-external-annotations.gradle.plugin:0.13.2")
      }
    }
    
    apply(plugin = "name.remal.idea-external-annotations")
  • Applying plugins to all subprojects .