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 3.17.5 (latest)

Created 19 December 2024.

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 "3.17.5"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.quarkus:io.quarkus.gradle.plugin:3.17.5")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.quarkus")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.quarkus:io.quarkus.gradle.plugin:3.17.5")
      }
    }
    
    apply(plugin = "io.quarkus")
  • Applying plugins to all subprojects .