Search Gradle plugins

io.quarkus

Builds a Quarkus application, and provides helpers to launch dev-mode, the Quarkus CLI, building of native images

https://quarkus.io/

Sources: https://github.com/quarkusio/quarkus

Version 0.27.0

0.27.0

Created 30 October 2019.

Builds a Quarkus application, and provides helpers to launch dev-mode, the Quarkus CLI, building of native images

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.quarkus") version "0.27.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.io.quarkus:quarkus-gradle-plugin:0.27.0")
      }
    }
    
    apply(plugin = "io.quarkus")
  • Applying plugins to all subprojects .