io.github.simulatan.gradle-reflections-plugin
Owner: Jakob
Bakes in reflection results at compile time
https://github.com/SIMULATAN/gradle-reflections-plugin
Sources: https://github.com/SIMULATAN/gradle-reflections-plugin.git
Version 2.0.0 (latest)
2.0.0
Created 02 October 2023.
Bakes in reflection results at compile time
Using the plugins DSL:
plugins {
id("io.github.simulatan.gradle-reflections-plugin") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.simulatan:gradle-reflections-plugin:2.0.0")
}
}
apply(plugin = "io.github.simulatan.gradle-reflections-plugin")
Using the plugins DSL:
plugins {
id "io.github.simulatan.gradle-reflections-plugin" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.simulatan:gradle-reflections-plugin:2.0.0"
}
}
apply plugin: "io.github.simulatan.gradle-reflections-plugin"