hosting-asset-data-migration #79

Merged
hsh-michaelhoennig merged 22 commits from hosting-asset-data-migration into master 2024-07-22 11:30:34 +02:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit ccb0ee9c0f - Show all commits

View File

@ -56,7 +56,8 @@ function importLegacyData() {
echo "using environment (with ending ';' for use in IntelliJ IDEA):" echo "using environment (with ending ';' for use in IntelliJ IDEA):"
echo "--- BEGIN: ---" echo "--- BEGIN: ---"
set | grep ^HSADMINNG_ | sed 's/$/;/' set | grep ^HSADMINNG_ | sed 's/$/;/'
echo "---- END. ----\n" echo "---- END. ----"
echo
echo ./gradlew $target --rerun echo ./gradlew $target --rerun
./gradlew $target --rerun ./gradlew $target --rerun

View File

@ -20,8 +20,10 @@ import jakarta.servlet.http.HttpServletRequest;
import jakarta.validation.constraints.NotNull; import jakarta.validation.constraints.NotNull;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
import java.io.InputStreamReader; import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.io.Reader; import java.io.Reader;
import java.io.StringReader; import java.io.StringReader;
import java.io.StringWriter; import java.io.StringWriter;