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.0.6.6
0.0.6.6
Created 15 September 2020.
Proof-of-concept Gradle plugin for builds using Quarkus
Using the plugins DSL:
plugins {
id("sebersole.quarkus.plugin-poc") version "0.0.6.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.sebersole:quarkus-gradle-plugin-poc:0.0.6.6")
}
}
apply(plugin = "sebersole.quarkus.plugin-poc")
Using the plugins DSL:
plugins {
id "sebersole.quarkus.plugin-poc" version "0.0.6.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.sebersole:quarkus-gradle-plugin-poc:0.0.6.6"
}
}
apply plugin: "sebersole.quarkus.plugin-poc"