← All recipes
Open source

Upgrade group, artifact ID and version of an artifactItem, of a maven plugin execution configuration

Recipe IDcom.oracle.weblogic.rewrite.jakarta.UpgradeMavenPluginArtifactItems
Artifactorg.openrewrite.recipe:rewrite-third-party

Change the groupId and the artifactId of an artifactItem in the configuration section of a plugin's execution. This recipe does not perform any validation and assumes all values passed are valid.

Single recipeApache 2.0

Usage

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

mod run . --recipe com.oracle.weblogic.rewrite.jakarta.UpgradeMavenPluginArtifactItems --recipe-option "oldGroupId=javax" --recipe-option "oldArtifactId=javax" --recipe-option "newGroupId=jakarta.platform" --recipe-option "newArtifactId=javaee-api"

If the recipe isn’t available locally, install it with:

mod config recipes jar install org.openrewrite.recipe:rewrite-third-party:0.44.0

Options

NameTypeDescription
oldGroupIdrequiredStringThe old group ID to replace.
e.g. javax
oldArtifactIdrequiredStringThe old artifact ID to replace.
e.g. javax
newGroupIdrequiredStringThe new group ID to use.
e.g. jakarta.platform
newArtifactIdrequiredStringThe new artifact ID to use.
e.g. javaee-api
newVersionStringAn exact version number.
e.g. 9.1

Data tables

Structured output this recipe can produce.

  • Maven metadata failuresAttempts to resolve maven metadata that failed.org.openrewrite.maven.table.MavenMetadataFailures
  • 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