io.github.manosbatsis.gradle.plugin.reflections
Owner: Manos Batsis
Pre-scan and embed a Reflections metadata index file into your artifact.
https://github.com/manosbatsis/gradle-reflections-plugin
Sources: https://github.com/manosbatsis/gradle-reflections-plugin
Version 1.1 (latest)
1.1
Created 31 October 2017.
Pre-scan and embed a Reflections metadata index file into your artifact.
Using the plugins DSL:
plugins {
id("io.github.manosbatsis.gradle.plugin.reflections") version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.manosbatsis.gradle.plugin.reflections:gradle-reflections-plugin:1.1")
}
}
apply(plugin = "io.github.manosbatsis.gradle.plugin.reflections")
Using the plugins DSL:
plugins {
id "io.github.manosbatsis.gradle.plugin.reflections" version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.manosbatsis.gradle.plugin.reflections:gradle-reflections-plugin:1.1"
}
}
apply plugin: "io.github.manosbatsis.gradle.plugin.reflections"