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.17.0

Created 11 September 2017.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.name.remal:gradle-plugins:0.17.0")
  }
}

apply(plugin = "name.remal.idea-external-annotations")

Using the plugins DSL:

plugins {
  id "name.remal.idea-external-annotations" version "0.17.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.name.remal:gradle-plugins:0.17.0"
  }
}

apply plugin: "name.remal.idea-external-annotations"

Learn how to apply plugins to subprojects