liberty-bikes/game-service/build.gradle
2018-10-19 12:04:27 -05:00

22 lines
635 B
Groovy

dependencies {
compileOnly group: 'javax.websocket', name: 'javax.websocket-api', version: '1.1'
compile group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.0'
}
ext {
httpPort = 8080
httpsPort = 8443
appUrl = "http://${hostname}:${httpPort}/openapi/ui"
}
liberty {
server {
name = 'game-service'
dropins = [war]
bootstrapProperties = ['httpPort': httpPort, 'httpsPort': httpsPort]
configDirectory = file('src/main/liberty/config')
jvmOptions = ['-Dorg.libertybikes.restclient.PlayerService/mp-rest/url=http://localhost:8081/',
'-DsingleParty=' + System.getProperty('singleParty', 'false')]
}
}