changelog and build system

This commit is contained in:
0x150 2022-01-06 11:39:44 +01:00
parent b201d6ccda
commit 8ebda27415
4 changed files with 20 additions and 1 deletions

1
.gitignore vendored
View file

@ -13,7 +13,6 @@ classes/
#vscode
.settings/
.vscode/
bin/
.classpath
.project

Binary file not shown.

19
createRelease.sh Normal file
View file

@ -0,0 +1,19 @@
#!/usr/bin/env bash
echo "Input changelog, enter \"end\" when done"
echo -n "" > ./src/main/resources/changelogLatest.txt
while [[ true ]]; do
read -p "> " line
if [ "$line" == "end" ]; then
break
fi
echo $line >> ./src/main/resources/changelogLatest.txt
done
echo "Running build"
export JAVA_HOME="$HOME/.jdks/openjdk-17.0.1/"
./gradlew build
if [[ ! -d bin ]]; then
mkdir bin
fi
mv ./build/libs/sipoverprivate-1.0.0.jar bin
echo "Made release"

View file

@ -0,0 +1 @@
k