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
#!/usr/bin/env bash | |
MIGRATION_VERSION="1.0.6" | |
if [ ! -f "jakartaee-migration-${MIGRATION_VERSION}-shaded.jar" ] | |
then | |
wget https://dlcdn.apache.org/tomcat/jakartaee-migration/v${MIGRATION_VERSION}/binaries/jakartaee-migration-${MIGRATION_VERSION}-shaded.jar -O jakartaee-migration-${MIGRATION_VERSION}-shaded.jar | |
fi | |
function transformFile() { |
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
#!/usr/bin/env bash | |
SED="sed -i " | |
if [ "$(uname)" == "Darwin" ] | |
then | |
## TODO: This must be checked if it really works! | |
SED="sed -i ''" | |
fi | |
## adjust pom dependencies |