← All recipes
Open source

Delete Quarkus configuration property

Recipe IDorg.openrewrite.quarkus.DeleteQuarkusProperty
Artifactorg.openrewrite.recipe:rewrite-quarkus

Delete a property from Quarkus configuration files.

Single recipeApache 2.0

Usage

You’ll need the Moderne CLI configured before running the command below.

mod run . --recipe org.openrewrite.quarkus.DeleteQuarkusProperty --recipe-option "propertyKey=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.0

Options

NameTypeDescription
propertyKeyrequiredStringThe name of the property key whose value is to be deleted.
e.g. quarkus.hibernate-search-orm.indexing.plan.synchronization.strategy
oldValueStringOnly delete the property value if it matches the configured oldValue.
e.g. read-sync
profileStringThe profile where the property should be deleted. If not specified, the property will be deleted from all profiles by default.
e.g. dev
deleteFromAllProfilesBooleanIf set to true, the property will be removed from all available profiles. Defaults to true.
e.g. false
pathExpressionsListEach 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