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

Created 27 November 2018.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects