Add explicit JAXB dependencies
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
- groupId: org.openrewrite.recipe
- artifactId: rewrite-migrate-java
- version: 1.21.1
This recipe has no required configuration options. It can be activated by adding a dependency on
org.openrewrite.recipe:rewrite-migrate-java:1.21.1
in your build file or by running a shell command (in which case no build changes are needed):Gradle
Maven POM
Maven Command Line
build.gradle
plugins {
id("org.openrewrite.rewrite") version("5.40.4")
}
rewrite {
activeRecipe("org.openrewrite.java.migrate.javax.AddJaxbDependencies")
}
repositories {
mavenCentral()
}
dependencies {
rewrite("org.openrewrite.recipe:rewrite-migrate-java:1.21.1")
}
pom.xml
<project>
<build>
<plugins>
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>4.45.0</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>1.21.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
shell
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
Recipe List
Yaml Recipe List
- groupId:
com.sun.xml.bind
- artifactId:
jaxb-core
- groupId:
com.sun.xml.bind
- artifactId:
jaxb-core
- oldGroupId:
javax.xml.bind
- oldArtifactId:
jaxb-api
- newGroupId:
jakarta.xml.bind
- newArtifactId:
jakarta.xml.bind-api
- newVersion:
2.3.x
- oldGroupId:
javax.xml.bind
- oldArtifactId:
jaxb-api
- newGroupId:
jakarta.xml.bind
- newArtifactId:
jakarta.xml.bind-api
- newVersion:
2.3.x
- groupId:
jakarta.xml.bind
- artifactId:
jakarta.xml.bind-api
- version:
2.3.x
- onlyIfUsing:
javax.xml.bind..*
- acceptTransitive:
true
- groupId:
jakarta.xml.bind
- artifactId:
jakarta.xml.bind-api
- newVersion:
2.3.x
- runtime:
glassfish
- groupPattern:
org.glassfish.jaxb
- artifactPattern:
*
- onlyIfVersionsMatch:
true
- groupPattern:
com.sun.xml.bind
- artifactPattern:
*
- onlyIfVersionsMatch:
true
- groupPattern:
jakarta.xml.bind
- artifactPattern:
*
- onlyIfVersionsMatch:
true
---
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.maven.RemoveDependency:
groupId: com.sun.xml.bind
artifactId: jaxb-core
- org.openrewrite.maven.RemoveManagedDependency:
groupId: com.sun.xml.bind
artifactId: jaxb-core
- org.openrewrite.maven.ChangeDependencyGroupIdAndArtifactId:
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.maven.AddDependency:
groupId: jakarta.xml.bind
artifactId: jakarta.xml.bind-api
version: 2.3.x
onlyIfUsing: javax.xml.bind..*
acceptTransitive: true
- org.openrewrite.maven.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
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.