Static snapshot — interactive elements (tabs, toggles, search, copy) are not functional. View the live prototype in the docs repo.
Skip to main content
ReframedReadabilityConversionTitle, id, description, tags, license and a primary CTA in one header card, with copyable id + Artifact and an estimated-time-saved stat. Title, id, description, tags and license are real (tags = the page’s “### Tags”); languages are derived; time-saved is placeholder (phase-2, from platform run data — not AI). New: the Copy-as-Markdown action — the AI-consumption entry (a per-page .md / llms.txt export; phase 2).
Open source

Quarkus 2.x migration from Quarkus 1.x

Recipe IDorg.openrewrite.quarkus.quarkus2.Quarkus1to2Migration
Artifactorg.openrewrite.recipe:rewrite-quarkus

Migrates Quarkus 1.x to 2.x. Applies the full set of API, configuration, and dependency changes needed to move a Quarkus application across the major version, including both Java source and application configuration (properties and YAML).

Composite recipeJavaPropertiesYAMLApache License 2.0
~3 hrs / appest. time saved
Real todayDeveloper understandingReal today (generator): source, issue-tracker and Maven links + license, and the composite "customize" note.

Recipe source

This recipe is composed of more than one recipe. If you want to customize the set of recipes this is composed of, you can find and copy the GitHub source for the recipe from the link above.
ReframedReadabilityDeveloper understandingReal today (generator): recipe list + YAML as tabs. New: the recipe list becomes searchable above 15 items (the job is “is X bundled?”), and a tab-level Copy YAML supports copy-to-customize without switching tabs.

Definition

ReframedReadabilityDeveloper understandingReal today (generator): the composite recipes that include this one, linked to their detail pages. Flexibility: the same list widget as Definition — inline when short, searchable/bounded above 15 items. Used-by counts run 1–347, so search beats an endless list. Reflects the open-source catalog only (enterprise/private usage isn’t surfaced) — flagged inline so it isn’t mistaken for the full picture.

Used by

This recipe is used as part of the following composite recipes (from the open-source catalog):

1 recipes
ReframedReadabilityAI parsingReal before/after/diff. New UI: each example is a collapsible container (first open, with an Expand/Collapse-all toggle when there’s more than one), matching the data tables — so the rare many-example pages (counts run 0–26, median 1) stay tidy instead of growing an endless column. Collapsed bodies remain in the DOM, so every example is crawlable and in the .md / llms.txt export.

Examples

properties
Quarkus1to2MigrationPropertiesTest#smallryeJwt
Before
smallrye.jwt.sign.key-location=/keys/signing
smallrye.jwt.encrypt.key-location=/keys/encrypt
After
smallrye.jwt.sign.key.location=/keys/signing
smallrye.jwt.encrypt.key.location=/keys/encrypt
java
Quarkus1to2MigrationTest#quteResourcePathToLocation
Before
import io.quarkus.qute.api.ResourcePath;
import io.quarkus.qute.Template;

class ReportGenerator {
@ResourcePath("reports/v1/report_01")
Template report;

void generate() {
String result = report
.data("samples", new Object())
.render();
}
}
After
import io.quarkus.qute.Location;
import io.quarkus.qute.Template;

class ReportGenerator {
@Location("reports/v1/report_01")
Template report;

void generate() {
String result = report
.data("samples", new Object())
.render();
}
}
properties
Quarkus1to2MigrationPropertiesTest#smallryeJwt
Before
smallrye.jwt.sign.key-location=/keys/signing
smallrye.jwt.encrypt.key-location=/keys/encrypt
After
smallrye.jwt.sign.key.location=/keys/signing
smallrye.jwt.encrypt.key.location=/keys/encrypt
java
Quarkus1to2MigrationTest#quteResourcePathToLocation
Before
import io.quarkus.qute.api.ResourcePath;
import io.quarkus.qute.Template;

class ReportGenerator {
@ResourcePath("reports/v1/report_01")
Template report;

void generate() {
String result = report
.data("samples", new Object())
.render();
}
}
After
import io.quarkus.qute.Location;
import io.quarkus.qute.Template;

class ReportGenerator {
@Location("reports/v1/report_01")
Template report;

void generate() {
String result = report
.data("samples", new Object())
.render();
}
}
ReframedDeveloper understandingThe real RunRecipe component with the page’s actual props (CLI run + jar install). New: each form is a collapsible container (first open, with an Expand/Collapse-all toggle when there’s more than one variant), matching the data tables. The master shows every variant the component renders — Java/JVM, with-configuration, and JavaScript / Python / C# package forms.

Usage

Run this recipe

This recipe has no required configuration options. Users of Moderne can run it via the Moderne CLI.

You will need to have configured the Moderne CLI on your machine before you can run the following command.

shell
mod run . --recipe Quarkus1to2Migration

If the recipe is not available locally, then you can install it using:

mod config recipes jar install org.openrewrite.recipe:rewrite-quarkus:2.33.0
ReframedConversionReuses the existing app.moderne.io link, also surfaced as a primary “Try in Platform” button in the header.

See how this recipe works across thousands of OSS repositories

Run this recipe at scale on the Moderne Platform and review every change before it lands.

Try in Platform
ReframedDeveloper understandingReal today (generator): data-table names and column descriptions. Reframed: a collapsible list instead of a tab strip (first open, with an Expand/Collapse-all toggle when there’s more than one) — it scales to any number of tables and stays readable on narrow screens. Every table’s columns remain in the page markup even while collapsed, so crawlers and the .md export still read them.

Data tables

Maven metadata failures
org.openrewrite.maven.table.MavenMetadataFailures

Attempts to resolve maven metadata that failed.

ColumnDescription
Group idThe groupId of the artifact for which the metadata download failed.
Artifact idThe artifactId of the artifact for which the metadata download failed.
VersionThe version of the artifact for which the metadata download failed.
Maven repositoryThe URL of the Maven repository that the metadata download failed on.
SnapshotsDoes the repository support snapshots.
ReleasesDoes the repository support releases.
FailureThe reason the metadata download failed.
Source files that had results
org.openrewrite.table.SourcesFileResults

Source files that were modified by the recipe run.

ColumnDescription
Source path before the runThe source path of the file before the run. null when a source file was created during the run.
Source path after the runA recipe may modify the source path. This is the path after the run. null when a source file was deleted during the run.
Parent of the recipe that made changesIn a hierarchical recipe, the parent of the recipe that made a change. Empty if this is the root of a hierarchy or if the recipe is not hierarchical at all.
Recipe that made changesThe specific recipe that made a change.
Estimated time savingAn estimated effort that a developer to fix manually instead of using this recipe, in unit of seconds.
CycleThe recipe cycle in which the change was made.
Source files that had search results
org.openrewrite.table.SearchResults

Search results that were found during the recipe run.

ColumnDescription
Source path of search result before the runThe source path of the file with the search result markers present.
Source path of search result after run the runA recipe may modify the source path. This is the path after the run. null when a source file was deleted during the run.
ResultThe trimmed printed tree of the LST element that the marker is attached to.
DescriptionThe content of the description of the marker.
Recipe that added the search markerThe specific recipe that added the Search marker.
Source files that errored on a recipe
org.openrewrite.table.SourcesFileErrors

The details of all errors produced by a recipe run.

ColumnDescription
Source pathThe file that failed to parse.
Recipe that made changesThe specific recipe that made a change.
Stack traceThe stack trace of the failure.
Recipe performance
org.openrewrite.table.RecipeRunStats

Statistics used in analyzing the performance of recipes.

ColumnDescription
The recipeThe recipe whose stats are being measured both individually and cumulatively.
Source file countThe number of source files the recipe ran over.
Source file changed countThe number of source files which were changed in the recipe run. Includes files created, deleted, and edited.
Cumulative scanning time (ns)The total time spent across the scanning phase of this recipe.
Max scanning time (ns)The max time scanning any one source file.
Cumulative edit time (ns)The total time spent across the editing phase of this recipe.
Max edit time (ns)The max time editing any one source file.
NewAI parsingStructured semantic formattingSoftwareSourceCode JSON-LD, not present on today’s pages. Built from real fields only (name, id, description, repo, languages, license); no AI, no authoring. Injected into the page <head> (invisible in production); shown here so you can see the markup.

Structured datain <head> — not rendered on the page

This SoftwareSourceCode JSON-LD is injected into the page’s<head> and is invisible to readers in production — it’s shown here only so you can see the markup.

{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "Quarkus 2.x migration from Quarkus 1.x",
"identifier": "org.openrewrite.quarkus.quarkus2.Quarkus1to2Migration",
"description": "Migrates Quarkus 1.x to 2.x. Applies the full set of API, configuration, and dependency changes needed to move a Quarkus application across the major version, including both Java source and application configuration (properties and YAML).",
"codeRepository": "https://github.com/openrewrite/rewrite-quarkus/blob/main/src/main/resources/META-INF/rewrite/quarkus.yml",
"programmingLanguage": [
"Java",
"Properties",
"YAML"
],
"license": "https://www.apache.org/licenses/LICENSE-2.0"
}