Skip to content

Commit

Permalink
Add Data Faker migration recipe coming from Java Faker
Browse files Browse the repository at this point in the history
Fixes #490
  • Loading branch information
timtebeek committed Mar 12, 2024
1 parent 368384a commit adb8eba
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions src/main/resources/META-INF/rewrite/datafaker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#
# 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.testing.datafaker.JavaFakerToDataFaker
displayName: Migrate from Java Faker to Datafaker
description: Change imports and dependencies related to Java Faker to Datafaker replacements.
recipeList:
- org.openrewrite.java.ChangeType:
oldFullyQualifiedTypeName: com.github.javafaker.Crypto
newFullyQualifiedTypeName: net.datafaker.providers.base.Hashing
- org.openrewrite.java.ChangeType:
oldFullyQualifiedTypeName: com.github.javafaker.Relationships
newFullyQualifiedTypeName: net.datafaker.providers.base.Relationship
- org.openrewrite.java.ChangeMethodName:
methodPattern: com.github.javafaker.Faker crypto()
name: hashing
- org.openrewrite.java.ChangePackage:
oldPackageName: com.github.javafaker
newPackageName: net.datafaker
- org.openrewrite.java.dependencies.ChangeDependency:
oldGroupId: com.github.javafaker
oldArtifactId: javafaker
newGroupId: net.datafaker
newArtifactId: datafaker

0 comments on commit adb8eba

Please sign in to comment.