com.mageddo.graal-reflection-configuration-generator
Owner: Elvis de Freitas Souza
Resolve your maven dependencies from a standalone embed maven local repository folder(on the project directory for example)
https://github.com/mageddo/graal-reflection-configuration-generator.git
Sources: https://github.com/mageddo/graal-reflection-configuration-generator.git
Version 2.0.2 (latest)
2.0.2
Created 28 July 2019.
Resolve your maven dependencies from a standalone embed maven local repository folder(on the project directory for example)
Using the plugins DSL:
plugins {
id("com.mageddo.graal-reflection-configuration-generator") version "2.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.mageddo:graal-reflection-configuration-generator:2.0.2")
}
}
apply(plugin = "com.mageddo.graal-reflection-configuration-generator")
Using the plugins DSL:
plugins {
id "com.mageddo.graal-reflection-configuration-generator" version "2.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.mageddo:graal-reflection-configuration-generator:2.0.2"
}
}
apply plugin: "com.mageddo.graal-reflection-configuration-generator"