quarkus-update
Installation
SKILL.md
Quarkus Project Check
Check if a Quarkus project's build files are up-to-date by comparing against reference generated projects from code-with-quarkus-compare.
Step 1: Detect Build Tool and Version
Identify which build file exists in the project root:
| File | Build Tool | Tag prefix |
|---|---|---|
pom.xml |
Maven | maven- |
build.gradle |
Gradle | gradle- |
build.gradle.kts |
Gradle Kotlin DSL | gradle-kotlin-dsl- |
Extract the Quarkus version:
- Maven (
pom.xml): Look for the<quarkus.platform.version>property, or the version ofquarkus-bomin<dependencyManagement> - Gradle (
build.gradle): Look forquarkusPlatformVersionin theextblock orgradle.properties - Gradle KTS (
build.gradle.kts): Look forval quarkusPlatformVersionor the BOM declaration