|
@echo off
|
|
REM TED Procurement Processor Startup Script
|
|
REM Increases Java heap size to 8GB
|
|
|
|
echo Starting TED Procurement Processor with 8GB heap...
|
|
|
|
java -Xms4g -Xmx8g -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -jar target\ted-procurement-processor-1.0.0-SNAPSHOT.jar
|
|
|
|
pause
|