chg: moved http and xmlrpc port settings into server.properties

This commit is contained in:
Tobi Schäfer 2020-03-17 18:29:41 +01:00
parent 5cbeb9f01d
commit 56e9f6793b
2 changed files with 23 additions and 32 deletions

View file

@ -1,3 +1,5 @@
def jettyLogLevel = '-Dorg.eclipse.jetty.LEVEL=WARN'
allprojects {
apply plugin: 'java'
apply plugin: 'application'
@ -108,11 +110,7 @@ installDist {
run {
classpath = files('launcher.jar')
args '-w', '8080'
args '-x', '8081'
args '-i', projectDir
args '-h', projectDir
jvmArgs '-Dorg.eclipse.jetty.LEVEL=WARN'
jvmArgs jettyLogLevel
}
task shell(type: JavaExec) {