Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions src/main/resources/META-INF/rewrite/java-ee-8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ tags:
- javaee8
- deprecated
recipeList:
- org.openrewrite.java.dependencies.ChangeDependency:
oldGroupId: javax.servlet
oldArtifactId: servlet-api
newGroupId: javax.servlet
newArtifactId: javax.servlet-api
newVersion: 3.x
- org.openrewrite.java.migrate.javaee7
- org.openrewrite.java.migrate.javaee8.ServletIsRequestedSessionIdFromURL
- org.openrewrite.java.migrate.javaee8.ApacheDefaultProvider
Expand All @@ -42,8 +48,8 @@ type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.java.migrate.javaee8.ApacheDefaultProvider
displayName: Flags any `org.apache.bval.jsr*` (bval 1.1) and `org.apache.bval.jsr303*` (bval 1.0) package references
description: >-
This recipe flags any `org.apache.bval.jsr*` (bval 1.1) and `org.apache.bval.jsr303*` (bval 1.0) package references in validation.xml deployment descriptors.
Bean Validation 2.0 and later use the Hibernate Validator implementation instead of the
This recipe flags any `org.apache.bval.jsr*` (bval 1.1) and `org.apache.bval.jsr303*` (bval 1.0) package references in validation.xml deployment descriptors.
Bean Validation 2.0 and later use the Hibernate Validator implementation instead of the
Apache BVal implementation which was used for Bean Validation 1.0 and 1.1.
recipeList:
- org.openrewrite.xml.ChangeTagValue:
Expand All @@ -60,4 +66,3 @@ recipeList:
newValue: org.hibernate.validator.engine.ConstraintValidatorFactoryImpl
- org.openrewrite.xml.RemoveXmlTag:
xPath: /validation-config/parameter-name-provider

Loading