This allows for command executors along the entire command chain, such that `/command`and `/command subcommand` may both be executed.
8 lines
216 B
Bash
Executable file
8 lines
216 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Make sure all submodules are initialized
|
|
git submodule update --remote
|
|
# Package all jars
|
|
|
|
export MAVEN_OPTS="-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
|
|
./mvnw -T1C clean package -DskipTests=true
|