Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
maxanier committed Oct 15, 2023
1 parent a658add commit b4384f0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mcp_mappings=1.19.3-2022.12.18-1.20.1
mcp_channel=parchment
main_version=1
major_version=9
minor_version=3
minor_version=4
#Dependencies/Optional Libraries
jei_version=15.0.0.12
guideapi_version=1.20.1-2.2.6-alpha+20230617-1850
Expand Down
24 changes: 12 additions & 12 deletions preReleaseTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@ mkdir "$dir/vampirism"
cp "build/libs/Vampirism-$mc_version-$version.jar" "$dir/vampirism/"

#Werewolves
#git clone https://github.com/TeamLapen/Werewolves.git "$dir/werewolves"
#cd "$dir/werewolves" || exit
#git checkout "origin/$branch_name"
#echo -e "\nrepositories{ maven{ url='$dir/.m2' }}" >> build.gradle
#./gradlew build -Pvampirism_version="$version"
werewolves_success=0 #$?
git clone https://github.com/TeamLapen/Werewolves.git "$dir/werewolves"
cd "$dir/werewolves" || exit
git checkout "origin/$branch_name"
echo -e "\nrepositories{ maven{ url='$dir/.m2' }}" >> build.gradle
./gradlew build -Pvampirism_version="$version"
werewolves_success=$?

#Integrations
#git clone https://github.com/TeamLapen/VampirismIntegrations.git "$dir/integrations"
#cd "$dir/integrations" || exit
#git checkout "origin/$branch_name"
#echo -e "\nrepositories{ maven{ url='$dir/.m2' }}" >> build.gradle
#./gradlew build -Pvampirism_version="$version" -Pvampirism_mcversion="$mc_version"
integrations_success=0 #$?
git clone https://github.com/TeamLapen/VampirismIntegrations.git "$dir/integrations"
cd "$dir/integrations" || exit
git checkout "origin/$branch_name"
echo -e "\nrepositories{ maven{ url='$dir/.m2' }}" >> build.gradle
./gradlew build -Pvampirism_version="$version" -Pvampirism_mcversion="$mc_version"
integrations_success=$?

if [ $werewolves_success -eq 0 ] && [ $integrations_success -eq 0 ];
then
Expand Down

0 comments on commit b4384f0

Please sign in to comment.