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 1.12.2.Final

1.12.2.Final

Created 11 March 2021.

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 "1.12.2.Final"
}

See also:

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