name.remal.idea-external-annotations
Owner: Semyon Levin
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.24.1
0.24.1
Created 26 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.24.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.name.remal:gradle-plugins:0.24.1")
}
}
apply(plugin = "name.remal.idea-external-annotations")
Using the plugins DSL:
plugins {
id "name.remal.idea-external-annotations" version "0.24.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.name.remal:gradle-plugins:0.24.1"
}
}
apply plugin: "name.remal.idea-external-annotations"