10 lines
326 B
PowerShell
10 lines
326 B
PowerShell
|
# Check if the test_server directory exists, if not, create it
|
||
|
if (-not (Test-Path -Path test_server)) {
|
||
|
New-Item -ItemType Directory -Path test_server
|
||
|
}
|
||
|
|
||
|
# mvn clean package dependency:copy -DskipTests -DoutputDirectory=test_server/plugins
|
||
|
|
||
|
Set-Location -Path test_server
|
||
|
java -jar server.jar -nogui
|
||
|
Set-Location -Path ..
|