Remove unused files

This commit is contained in:
Andrea Cavalli 2023-05-10 16:31:49 +02:00
parent 99a0078321
commit 55a2e7f458
6 changed files with 0 additions and 68 deletions

View File

@ -1,10 +0,0 @@
#!/bin/bash -e
set -e
# OTHER REQUIRED ENVIRONMENT VARIABLES:
# REVISION = <revision>
cd ./scripts/core/
./deploy_release.sh
echo "Done."
exit 0

View File

@ -1,9 +0,0 @@
#!/bin/bash -e
set -e
# OTHER REQUIRED ENVIRONMENT VARIABLES:
cd ./scripts/core/
./deploy_snapshot.sh
echo "Done."
exit 0

View File

@ -1,9 +0,0 @@
#!/bin/bash -e
set -e
# OTHER REQUIRED ENVIRONMENT VARIABLES:
cd ./scripts/core/
./only_compile_release.sh
echo "Done."
exit 0

View File

@ -1,18 +0,0 @@
#!/bin/bash -e
# OTHER REQUIRED ENVIRONMENT VARIABLES:
# REVISION = <revision>
# Check variables correctness
if [ -z "${REVISION}" ]; then
echo "Missing parameter: REVISION"
exit 1
fi
cd "../../"
cd "bom"
mvn -B -Drevision="${REVISION}" -P "java8,java17" clean deploy
cd "../"
echo "Done."
exit 0

View File

@ -1,11 +0,0 @@
#!/bin/bash -e
# OTHER REQUIRED ENVIRONMENT VARIABLES:
cd "../../"
cd "bom"
mvn -B -P "java8,java17" clean deploy
cd "../"
echo "Done."
exit 0

View File

@ -1,11 +0,0 @@
#!/bin/bash -e
# OTHER REQUIRED ENVIRONMENT VARIABLES:
cd "../../"
cd "bom"
mvn -B package
cd "../"
echo "Done."
exit 0