Search Gradle plugins

Version 2.0.0

Created 18 March 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.0"
}

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.0")
  }
}

apply(plugin = "com.mageddo.graal-reflection-configuration-generator")

Using the plugins DSL:

plugins {
  id "com.mageddo.graal-reflection-configuration-generator" version "2.0.0"
}

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.0"
  }
}

apply plugin: "com.mageddo.graal-reflection-configuration-generator"

Learn how to apply plugins to subprojects