io.github.sebersole.quarkus-extension
Owner: Steve Ebersole
Simplified support for building Quarkus extensions using Gradle
https://github.com/sebersole/quarkus-extension-plugin
Sources: https://github.com/hibernate/hibernate-orm/tree/main/tooling/hibernate-gradle-plugin
Version 0.9.2
0.9.2
Created 04 May 2022.
Simplified support for building Quarkus extensions using Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.sebersole.quarkus-extension") version "0.9.2"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.sebersole.quarkus:quarkus-extension-plugin:0.9.2") } } apply(plugin = "io.github.sebersole.quarkus-extension")
- Applying plugins to all subprojects .