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 1.5.0 (latest)

1.5.0

Created 18 August 2021.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal:gradle-plugins:1.5.0")
      }
    }
    
    apply(plugin = "name.remal.idea-external-annotations")
  • Applying plugins to all subprojects .