mirror of
https://github.com/keycloak/keycloak.git
synced 2026-05-26 13:50:48 +00:00
24f539f078
Closes #47887 Signed-off-by: stianst <stianst@gmail.com>
14 lines
361 B
Bash
Executable File
14 lines
361 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
cd $(dirname $0)/../../
|
|
|
|
MODULE="$1"
|
|
|
|
cd "$MODULE"
|
|
|
|
../mvnw org.openrewrite.maven:rewrite-maven-plugin:run \
|
|
-Drewrite.activeRecipes=org.keycloak.JUnit4to5Migration \
|
|
-Drewrite.configLocation=../misc/rewrite/junit4-5.yml \
|
|
-Drewrite.recipeArtifactCoordinates=org.openrewrite.recipe:rewrite-testing-frameworks:3.34.0
|
|
|
|
../mvnw spotless:apply |