Merge pull request #260 from aguibert/update-200010

Update dependencies for 2020
This commit is contained in:
Andrew Guibert 2020-10-15 14:58:51 -05:00 committed by GitHub
commit 1bd41b18d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 21 deletions

View File

@ -7,9 +7,8 @@ ext {
liberty { liberty {
server { server {
name = 'auth-service' name = 'auth-service'
dropins = [war] deploy.dropins = [war]
bootstrapProperties = ['httpPort': httpPort, 'httpsPort': httpsPort] bootstrapProperties = ['httpPort': httpPort, 'httpsPort': httpsPort]
configDirectory = file('src/main/liberty/config')
} }
} }

View File

@ -3,7 +3,7 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'net.wasdev.wlp.gradle.plugins:liberty-gradle-plugin:2.6.5' classpath 'io.openliberty.tools:liberty-gradle-plugin:3.0'
} }
} }
@ -57,7 +57,7 @@ subprojects {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'net.wasdev.wlp.gradle.plugins:liberty-gradle-plugin:2.6.5' classpath 'io.openliberty.tools:liberty-gradle-plugin:3.0'
} }
} }
@ -68,9 +68,9 @@ subprojects {
dependencies { dependencies {
providedCompile group: 'org.eclipse.microprofile', name: 'microprofile', version: '3.0' providedCompile group: 'org.eclipse.microprofile', name: 'microprofile', version: '3.0'
providedCompile group: 'jakarta.platform', name: 'jakarta.jakartaee-api', version: '8.0.0' providedCompile group: 'jakarta.platform', name: 'jakarta.jakartaee-api', version: '8.0.0'
testCompile group: 'junit', name: 'junit', version: '4.12' testCompile group: 'junit', name: 'junit', version: '4.13.1'
testCompile group: 'org.eclipse', name: 'yasson', version: '1.0.5' testCompile group: 'org.eclipse', name: 'yasson', version: '1.0.8'
libertyRuntime group: 'io.openliberty', name: 'openliberty-runtime', version: '19.0.0.9' libertyRuntime group: 'io.openliberty', name: 'openliberty-runtime', version: '20.0.0.10'
} }
eclipse { eclipse {

View File

@ -15,7 +15,7 @@ war {
} }
node { node {
version = '10.16.3' version = '10.19.0'
npmVersion = '6.9.0' npmVersion = '6.9.0'
download = true download = true
workDir = file("${rootDir}/frontend/prebuild/node") workDir = file("${rootDir}/frontend/prebuild/node")
@ -86,8 +86,7 @@ libertyStart.doLast {
liberty { liberty {
server { server {
name = 'frontendServer' name = 'frontendServer'
apps = [war] deploy.apps = [war]
bootstrapProperties = ['httpPort': httpPort, 'httpsPort': httpsPort, 'application.name': applicationName] bootstrapProperties = ['httpPort': httpPort, 'httpsPort': httpsPort, 'application.name': applicationName]
configDirectory = file('src/main/liberty/config')
} }
} }

View File

@ -11,9 +11,8 @@ ext {
liberty { liberty {
server { server {
name = 'game-service' name = 'game-service'
dropins = [war] deploy.dropins = [war]
bootstrapProperties = ['httpPort': httpPort, 'httpsPort': httpsPort] bootstrapProperties = ['httpPort': httpPort, 'httpsPort': httpsPort]
configDirectory = file('src/main/liberty/config')
jvmOptions = ['-DsingleParty=' + System.getProperty('singleParty', 'true')] jvmOptions = ['-DsingleParty=' + System.getProperty('singleParty', 'true')]
} }
} }

View File

@ -7,8 +7,7 @@ ext {
liberty { liberty {
server { server {
name = 'player-service' name = 'player-service'
dropins = [war] deploy.dropins = [war]
configDirectory = file('src/main/liberty/config')
bootstrapProperties = ['httpPort': httpPort, 'httpsPort': httpsPort] bootstrapProperties = ['httpPort': httpPort, 'httpsPort': httpsPort]
} }
} }
@ -34,7 +33,7 @@ task addPostgresqlToBuild(type: Copy) {
} }
assemble.dependsOn 'addPostgresqlToBuild' assemble.dependsOn 'addPostgresqlToBuild'
installApps.dependsOn 'addPostgresqlToServer' deploy.dependsOn 'addPostgresqlToServer'
// The installLiberty task doesn't work when run in parallel with other installLiberty tasks // The installLiberty task doesn't work when run in parallel with other installLiberty tasks
installLiberty.mustRunAfter ':frontend:installLiberty' installLiberty.mustRunAfter ':frontend:installLiberty'

View File

@ -22,13 +22,11 @@
<requestUrl urlPattern="/ibm/api" matchType="notContain"/> <requestUrl urlPattern="/ibm/api" matchType="notContain"/>
</authFilter> </authFilter>
<!-- uncomment these once liberty-gradle-plugin v2.7 is released
<variable name="DB_HOST" defaultValue="localhost"/> <variable name="DB_HOST" defaultValue="localhost"/>
<variable name="DB_PORT" defaultValue="5432"/> <variable name="DB_PORT" defaultValue="5432"/>
<variable name="DB_NAME" defaultValue="playerdb"/> <variable name="DB_NAME" defaultValue="playerdb"/>
<variable name="DB_USER" defaultValue="lb_user"/> <variable name="DB_USER" defaultValue="lb_user"/>
<variable name="DB_PASS" defaultValue="lb_password"/> <variable name="DB_PASS" defaultValue="lb_password"/>
-->
<library id="postgresql"> <library id="postgresql">
<fileset dir="postgresql"/> <fileset dir="postgresql"/>
@ -36,8 +34,9 @@
<dataSource id="DefaultDataSource"> <dataSource id="DefaultDataSource">
<jdbcDriver libraryRef="postgresql"/> <jdbcDriver libraryRef="postgresql"/>
<properties.postgresql serverName="localhost" portNumber="5432" databaseName="playerdb" <properties.postgresql serverName="${DB_HOST}" portNumber="${DB_PORT}"
user="lb_user" password="lb_password"/> databaseName="${DB_NAME}"
user="${DB_USER}" password="${DB_PASS}"/>
</dataSource> </dataSource>
<applicationManager autoExpand="true"/> <applicationManager autoExpand="true"/>
@ -61,6 +60,4 @@
<httpEndpoint id="defaultHttpEndpoint" host="*" httpPort="${httpPort}" httpsPort="${httpsPort}" /> <httpEndpoint id="defaultHttpEndpoint" host="*" httpPort="${httpPort}" httpsPort="${httpsPort}" />
<applicationManager autoExpand="true"/>
</server> </server>