Add a new property

org.openrewrite.properties.AddProperty

Adds a new property to a property file. Attempts to place the new property in alphabetical order by the property keys. Whitespace before and after the = must be included in the property and value.

Recipe source

GitHub, Issue Tracker, Maven Central

  • groupId: org.openrewrite

  • artifactId: rewrite-properties

  • version: 8.24.0

Options

TypeNameDescriptionExample

String

property

The property key to add.

management.metrics.enable.process.files

String

value

The value of the new property key.

String

comment

Optional. A comment that will be added to the new property.

This is a comment

String

delimiter

Optional. Property entries support different delimiters (=, :, or whitespace). The default value is = unless provided the delimiter of the new property entry.

:

Usage

This recipe has required configuration parameters. Recipes with required configuration parameters cannot be activated directly. To activate this recipe you must create a new recipe which fills in the required parameters. In your rewrite.yml create a new recipe with a unique name. For example: com.yourorg.AddPropertyExample. Here's how you can define and customize such a recipe within your rewrite.yml:

rewrite.yml
---
type: specs.openrewrite.org/v1beta/recipe
name: com.yourorg.AddPropertyExample
displayName: Add a new property example
recipeList:
  - org.openrewrite.properties.AddProperty:
      property: management.metrics.enable.process.files
      value: null
      comment: This is a comment
      delimiter: :

Now that com.yourorg.AddPropertyExample has been defined activate it in your build file:

  1. Add the following to your build.gradle file:

build.gradle
plugins {
    id("org.openrewrite.rewrite") version("6.12.0")
}

rewrite {
    activeRecipe("com.yourorg.AddPropertyExample")
}

repositories {
    mavenCentral()
}
  1. Run gradle rewriteRun to run the recipe.

See how this recipe works across multiple open-source repositories

The community edition of the Moderne platform enables you to easily run recipes across thousands of open-source repositories.

Please contact Moderne for more information about safely running the recipes on your own codebase in a private SaaS.

Contributors

Sam Snyder, Tracey Yoshima, Nick McKinney, Adriano Machado, Tim te Beek, Jonathan Schneider

Last updated