This repository has been archived by the owner on May 13, 2023. It is now read-only.
forked from CoolCrabs/brachyura
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Offline builds and fix buildscript entrypoint
I am not sure how the buildscript entrypoint worked at some point, but then it didn't work anymore because it couldn't resolve the buildscript class. Thus, we will compile that class if it was not found
- Loading branch information
Showing
5 changed files
with
34 additions
and
10 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
set -e | ||
cd brachyura | ||
mvn clean package verify -Dmaven.test.skip=true --offline | ||
cd .. | ||
cd bootstrap | ||
mvn clean package verify -Dmaven.test.skip=true --offline | ||
cd .. | ||
cd build | ||
mvn clean package verify -Dmaven.test.skip=true --offline | ||
java -Dde.geolykt.starloader.brachyura.build.offline=true -jar ./target/brachyura-build-0.jar | ||
cd .. |