liberty-bikes/auth-service/build.gradle
2021-08-24 23:07:16 -05:00

23 lines
666 B
Groovy

ext {
httpPort = 8082
httpsPort = 8482
appUrl = "http://${hostname}:${httpPort}/openapi/ui"
}
liberty {
server {
name = 'auth-service'
deploy.dropins = [war]
bootstrapProperties = ['httpPort': httpPort, 'httpsPort': httpsPort]
}
}
dependencies {
implementation group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.1'
implementation group: 'com.google.api-client', name: 'google-api-client', version: '1.30.4'
implementation group: 'org.twitter4j', name: 'twitter4j-core', version: '4.0.7'
}
// The installLiberty task doesn't work when run in parallel with other installLiberty tasks
installLiberty.mustRunAfter ':frontend:installLiberty'