sebersole.quarkus.plugin-poc
Owner: Steve Ebersole
Proof-of-concept Gradle plugin for builds using Quarkus
https://github.com/sebersole/quarkus-gradle-plugin-poc
Sources: https://github.com/sebersole/quarkus-gradle-plugin-poc
Version 0.9 (latest)
0.9
Created 14 October 2020.
Proof-of-concept Gradle plugin for builds using Quarkus
Using the plugins DSL:
plugins {
id("sebersole.quarkus.plugin-poc") version "0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.sebersole.quarkus:quarkus-poc-buildscript-ext:0.9")
}
}
apply(plugin = "sebersole.quarkus.plugin-poc")
Using the plugins DSL:
plugins {
id "sebersole.quarkus.plugin-poc" version "0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.sebersole.quarkus:quarkus-poc-buildscript-ext:0.9"
}
}
apply plugin: "sebersole.quarkus.plugin-poc"