liberty-bikes/game-service/build.gradle
2018-01-17 23:44:29 -06:00

23 lines
397 B
Groovy

ext {
httpPort = 8080
httpsPort = 8443
}
liberty {
server {
name = 'game-service'
dropins = [war]
bootstrapProperties = ['httpPort': httpPort, 'httpsPort': httpsPort]
}
}
libertyStart.doLast {
println "Application available at: http://localhost:${httpPort}/"
}
task open {
doLast {
java.awt.Desktop.desktop.browse "http://localhost:${httpPort}/index.jsp".toURI()
}
}