Change Quarkus configuration property key
Recipe ID
org.openrewrite.quarkus.ChangeQuarkusPropertyKeyArtifact
org.openrewrite.recipe:rewrite-quarkusChange the key of a property in Quarkus configuration files.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.quarkus.ChangeQuarkusPropertyKey --recipe-option "oldPropertyKey=quarkus.hibernate-search-orm.automatic-indexing.synchronization.strategy" --recipe-option "newPropertyKey=quarkus.hibernate-search-orm.indexing.plan.synchronization.strategy"If the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite.recipe:rewrite-quarkus:2.34.0Options
| Name | Type | Description |
|---|---|---|
oldPropertyKeyrequired | String | The property key to rename. Supports regex. e.g. quarkus.hibernate-search-orm.automatic-indexing.synchronization.strategy |
newPropertyKeyrequired | String | The new name for the property key. Supports regex. e.g. quarkus.hibernate-search-orm.indexing.plan.synchronization.strategy |
profile | String | The profile where the property is defined. If not specified, the property will be changed on all profiles by default. e.g. dev |
changeAllProfiles | Boolean | If set to true, the property will be changed on all available profiles. Defaults to true if a profile is not defined.e.g. false |
pathExpressions | List | Each value in this list represents a glob expression that is used to match which files will be modified. If this value is not present, this recipe will query the execution context for reasonable defaults. ("**/application.yml", "**/application.yaml", "**/application.properties" and "**/META-INF/microprofile-config.properties". e.g. ["**/application.yaml"] |
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats