-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recipes to migrate from Javax, Jakarta and JetBrains nullability anno…
…tations to JSpecify (#541) * add jspecify recipe * Update src/test/java/org/openrewrite/java/migrate/jspecify/MigrateToJspecifyTest.java Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update src/test/java/org/openrewrite/java/migrate/jspecify/MigrateToJspecifyTest.java Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update src/test/java/org/openrewrite/java/migrate/jspecify/MigrateToJspecifyTest.java Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update src/test/java/org/openrewrite/java/migrate/jspecify/MigrateToJspecifyTest.java Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * fix AddCommonAnnotationsDependenciesTest * Upgrade test version of jakarta.annotation-api * Switch to `dependsOn` for AddCommonAnnotationsDependenciesTest * validate jspecify annotations * jspecify onlyIfUsing * jspecify onlyIfUsing pattern * update recipe descriptions * add MigrateFromJetbrainsAnnotations * jspecify -> JSpecify * Scan for the old annotations when adding jspecify dependency * Suppress warnings inside text blocks * Use common capitalization on displayName and description --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Tim te Beek <tim@moderne.io>
- Loading branch information
1 parent
6d5976d
commit 57a7c3d
Showing
4 changed files
with
407 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# | ||
# Copyright 2024 the original author or authors. | ||
# <p> | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# <p> | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# <p> | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
--- | ||
type: specs.openrewrite.org/v1beta/recipe | ||
name: org.openrewrite.java.jspecify.MigrateToJspecify | ||
displayName: Migrate to JSpecify | ||
description: >- | ||
This recipe will migrate to JSpecify annotations from various other nullability annotation standards. | ||
tags: | ||
- java | ||
recipeList: | ||
- org.openrewrite.java.jspecify.MigrateFromJavaxAnnotationApi | ||
- org.openrewrite.java.jspecify.MigrateFromJakartaAnnotationApi | ||
- org.openrewrite.java.jspecify.MigrateFromJetbrainsAnnotations | ||
|
||
--- | ||
type: specs.openrewrite.org/v1beta/recipe | ||
name: org.openrewrite.java.jspecify.MigrateFromJavaxAnnotationApi | ||
displayName: Migrate from javax annotation API to JSpecify | ||
description: Migrate from javax annotation API to JSpecify. | ||
recipeList: | ||
- org.openrewrite.java.dependencies.AddDependency: | ||
groupId: org.jspecify | ||
artifactId: jspecify | ||
version: latest.release | ||
onlyIfUsing: javax.annotation.*ull* | ||
- org.openrewrite.java.ChangeType: | ||
oldFullyQualifiedTypeName: javax.annotation.Nullable | ||
newFullyQualifiedTypeName: org.jspecify.annotations.Nullable | ||
ignoreDefinition: true | ||
- org.openrewrite.java.ChangeType: | ||
oldFullyQualifiedTypeName: javax.annotation.Nonnull | ||
newFullyQualifiedTypeName: org.jspecify.annotations.NonNull | ||
ignoreDefinition: true | ||
- org.openrewrite.staticanalysis.java.MoveFieldAnnotationToType: | ||
annotationType: org.jspecify.annotations.* | ||
--- | ||
type: specs.openrewrite.org/v1beta/recipe | ||
name: org.openrewrite.java.jspecify.MigrateFromJakartaAnnotationApi | ||
displayName: Migrate from Jakarta annotation API to JSpecify | ||
description: Migrate from Jakarta annotation API to JSpecify. | ||
recipeList: | ||
- org.openrewrite.java.dependencies.AddDependency: | ||
groupId: org.jspecify | ||
artifactId: jspecify | ||
version: 1.0.0 | ||
onlyIfUsing: jakarta.annotation.*ull* | ||
- org.openrewrite.java.ChangeType: | ||
oldFullyQualifiedTypeName: jakarta.annotation.Nullable | ||
newFullyQualifiedTypeName: org.jspecify.annotations.Nullable | ||
ignoreDefinition: true | ||
- org.openrewrite.java.ChangeType: | ||
oldFullyQualifiedTypeName: jakarta.annotation.Nonnull | ||
newFullyQualifiedTypeName: org.jspecify.annotations.NonNull | ||
ignoreDefinition: true | ||
- org.openrewrite.staticanalysis.java.MoveFieldAnnotationToType: | ||
annotationType: org.jspecify.annotations.* | ||
--- | ||
type: specs.openrewrite.org/v1beta/recipe | ||
name: org.openrewrite.java.jspecify.MigrateFromJetbrainsAnnotations | ||
displayName: Migrate from JetBrains annotations to JSpecify | ||
description: Migrate from JetBrains annotations to JSpecify. | ||
recipeList: | ||
- org.openrewrite.java.dependencies.AddDependency: | ||
groupId: org.jspecify | ||
artifactId: jspecify | ||
version: 1.0.0 | ||
onlyIfUsing: org.jetbrains.annotations.*ull* | ||
- org.openrewrite.java.ChangeType: | ||
oldFullyQualifiedTypeName: org.jetbrains.annotations.Nullable | ||
newFullyQualifiedTypeName: org.jspecify.annotations.Nullable | ||
ignoreDefinition: true | ||
- org.openrewrite.java.ChangeType: | ||
oldFullyQualifiedTypeName: org.jetbrains.annotations.NotNull | ||
newFullyQualifiedTypeName: org.jspecify.annotations.NonNull | ||
ignoreDefinition: true | ||
- org.openrewrite.staticanalysis.java.MoveFieldAnnotationToType: | ||
annotationType: org.jspecify.annotations.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.