org.openrewrite.java.migrate.javax.AddJaxbDependencies
This recipe will add explicit dependencies for Jakarta EE 8 when a Java 8 application is using JAXB. Any existing dependencies will be upgraded to the latest version of Jakarta EE 8. The artifacts are moved to Jakarta EE 8 version 2.x which allows for the continued use of the javax.xml.bind
namespace. Running a full javax to Jakarta migration using org.openrewrite.java.migrate.jakarta.JavaxMigrationToJakarta
will update to versions greater than 3.x which necessitates the package change as well.
- jaxb
- glassfish
- javax
- java11
- jakarta
GitHub, Issue Tracker, Maven Central
- groupId: org.openrewrite.recipe
- artifactId: rewrite-migrate-java
- version: 2.0.1
This recipe has no required configuration options. It can be activated by adding a dependency on org.openrewrite.recipe:rewrite-migrate-java:2.0.1
in your build file or by running a shell command (in which case no build changes are needed):
{% tabs %}
{% tab title="Gradle" %}
{% code title="build.gradle" %}
plugins {
id("org.openrewrite.rewrite") version("6.1.4")
}
rewrite {
activeRecipe("org.openrewrite.java.migrate.javax.AddJaxbDependencies")
}
repositories {
mavenCentral()
}
dependencies {
rewrite("org.openrewrite.recipe:rewrite-migrate-java:2.0.1")
}
{% endcode %} {% endtab %} {% tab title="Maven POM" %} {% code title="pom.xml" %}
<project>
<build>
<plugins>
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>5.2.4</version>
<configuration>
<activeRecipes>
<recipe>org.openrewrite.java.migrate.javax.AddJaxbDependencies</recipe>
</activeRecipes>
</configuration>
<dependencies>
<dependency>
<groupId>org.openrewrite.recipe</groupId>
<artifactId>rewrite-migrate-java</artifactId>
<version>2.0.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
{% endcode %} {% endtab %}
{% tab title="Maven Command Line" %} {% code title="shell" %} You will need to have Maven installed on your machine before you can run the following command.
mvn -U org.openrewrite.maven:rewrite-maven-plugin:run \
-Drewrite.recipeArtifactCoordinates=org.openrewrite.recipe:rewrite-migrate-java:RELEASE \
-Drewrite.activeRecipes=org.openrewrite.java.migrate.javax.AddJaxbDependencies
{% endcode %} {% endtab %} {% endtabs %}
{% tabs %} {% tab title="Recipe List" %}
- Remove a Gradle or Maven dependency
- groupId:
com.sun.xml.bind
- artifactId:
jaxb-core
- groupId:
- Remove Maven managed dependency
- groupId:
com.sun.xml.bind
- artifactId:
jaxb-core
- groupId:
- Change Gradle or Maven dependency
- oldGroupId:
javax.xml.bind
- oldArtifactId:
jaxb-api
- newGroupId:
jakarta.xml.bind
- newArtifactId:
jakarta.xml.bind-api
- newVersion:
2.3.x
- oldGroupId:
- Change Maven managed dependency groupId, artifactId and optionally the version
- oldGroupId:
javax.xml.bind
- oldArtifactId:
jaxb-api
- newGroupId:
jakarta.xml.bind
- newArtifactId:
jakarta.xml.bind-api
- newVersion:
2.3.x
- oldGroupId:
- Add Gradle or Maven dependency
- groupId:
jakarta.xml.bind
- artifactId:
jakarta.xml.bind-api
- version:
2.3.x
- onlyIfUsing:
javax.xml.bind..*
- acceptTransitive:
true
- groupId:
- Upgrade Gradle or Maven dependency versions
- groupId:
jakarta.xml.bind
- artifactId:
jakarta.xml.bind-api
- newVersion:
2.3.x
- groupId:
- Use latest JAXB API and runtime for Jakarta EE 8
- runtime:
glassfish
- runtime:
- Remove redundant explicit dependency versions
- groupPattern:
org.glassfish.jaxb
- artifactPattern:
*
- onlyIfVersionsMatch:
true
- groupPattern:
- Remove redundant explicit dependency versions
- groupPattern:
com.sun.xml.bind
- artifactPattern:
*
- onlyIfVersionsMatch:
true
- groupPattern:
- Remove redundant explicit dependency versions
- groupPattern:
jakarta.xml.bind
- artifactPattern:
*
- onlyIfVersionsMatch:
true
- groupPattern:
{% endtab %}
{% tab title="Yaml Recipe List" %}
---
type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.java.migrate.javax.AddJaxbDependencies
displayName: Add explicit JAXB dependencies
description: This recipe will add explicit dependencies for Jakarta EE 8 when a Java 8 application is using JAXB. Any existing dependencies will be upgraded to the latest version of Jakarta EE 8. The artifacts are moved to Jakarta EE 8 version 2.x which allows for the continued use of the `javax.xml.bind` namespace. Running a full javax to Jakarta migration using `org.openrewrite.java.migrate.jakarta.JavaxMigrationToJakarta` will update to versions greater than 3.x which necessitates the package change as well.
tags:
- jaxb
- glassfish
- javax
- java11
- jakarta
recipeList:
- org.openrewrite.java.dependencies.RemoveDependency:
groupId: com.sun.xml.bind
artifactId: jaxb-core
- org.openrewrite.maven.RemoveManagedDependency:
groupId: com.sun.xml.bind
artifactId: jaxb-core
- org.openrewrite.java.dependencies.ChangeDependency:
oldGroupId: javax.xml.bind
oldArtifactId: jaxb-api
newGroupId: jakarta.xml.bind
newArtifactId: jakarta.xml.bind-api
newVersion: 2.3.x
- org.openrewrite.maven.ChangeManagedDependencyGroupIdAndArtifactId:
oldGroupId: javax.xml.bind
oldArtifactId: jaxb-api
newGroupId: jakarta.xml.bind
newArtifactId: jakarta.xml.bind-api
newVersion: 2.3.x
- org.openrewrite.java.dependencies.AddDependency:
groupId: jakarta.xml.bind
artifactId: jakarta.xml.bind-api
version: 2.3.x
onlyIfUsing: javax.xml.bind..*
acceptTransitive: true
- org.openrewrite.java.dependencies.UpgradeDependencyVersion:
groupId: jakarta.xml.bind
artifactId: jakarta.xml.bind-api
newVersion: 2.3.x
- org.openrewrite.java.migrate.javax.AddJaxbRuntime:
runtime: glassfish
- org.openrewrite.maven.RemoveRedundantDependencyVersions:
groupPattern: org.glassfish.jaxb
artifactPattern: *
onlyIfVersionsMatch: true
- org.openrewrite.maven.RemoveRedundantDependencyVersions:
groupPattern: com.sun.xml.bind
artifactPattern: *
onlyIfVersionsMatch: true
- org.openrewrite.maven.RemoveRedundantDependencyVersions:
groupPattern: jakarta.xml.bind
artifactPattern: *
onlyIfVersionsMatch: true
{% endtab %} {% endtabs %}
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.