io.github.andavin.reflections.gradle.plugin
Owner: Mark Vogel
Pre-scan and embed a Reflections metadata index file into your artifact.
https://github.com/Andavin/reflections-gradle-plugin
Sources: https://github.com/Andavin/reflections-gradle-plugin
Version 1.0 (latest)
1.0
Created 28 February 2022.
Pre-scan and embed a Reflections metadata index file into your artifact.
Using the plugins DSL:
plugins {
id("io.github.andavin.reflections.gradle.plugin") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.andavin:reflections-gradle-plugin:1.0")
}
}
apply(plugin = "io.github.andavin.reflections.gradle.plugin")
Using the plugins DSL:
plugins {
id "io.github.andavin.reflections.gradle.plugin" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.andavin:reflections-gradle-plugin:1.0"
}
}
apply plugin: "io.github.andavin.reflections.gradle.plugin"