6 lines
130 B
Bash
Executable File
6 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
cd Server
|
|
sh mvnw package
|
|
mv target/*with-dependencies.jar server.jar
|
|
echo "Jar built and moved to Server/server.jar"
|