From 868d5d2ca4f459856494b84d5a5524021675a567 Mon Sep 17 00:00:00 2001 From: Ronan Browne Date: Tue, 24 Jan 2023 13:30:47 +0000 Subject: [PATCH] CORE-8968: update version (#13) --- buildSrc/src/main/groovy/csde.gradle | 2 +- gradle.properties | 80 ++++++++++++++-------------- 2 files changed, 42 insertions(+), 40 deletions(-) diff --git a/buildSrc/src/main/groovy/csde.gradle b/buildSrc/src/main/groovy/csde.gradle index 9e6c525..bef129c 100644 --- a/buildSrc/src/main/groovy/csde.gradle +++ b/buildSrc/src/main/groovy/csde.gradle @@ -47,7 +47,7 @@ configurations { // Dependencies for supporting tools dependencies { combinedWorker "net.corda:corda-combined-worker:$combinedWorkerVersion" - myPostgresJDBC 'org.postgresql:postgresql:42.4.1' + myPostgresJDBC "org.postgresql:postgresql:$postgresqlVersion" notaryServerCPB("com.r3.corda.notary.plugin.nonvalidating:notary-plugin-non-validating-server:$cordaNotaryPluginsVersion") { artifact { classifier = 'package' diff --git a/gradle.properties b/gradle.properties index 156d05f..ab0f1ac 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,39 +1,41 @@ -kotlin.code.style=official - -# Specify the version of the Corda-API to use. -# This needs to match the version supported by the Corda Cluster the CorDapp will run on. -cordaApiVersion=5.0.0.523-Fox1.0 - -# Settings For Development Utilities -combinedWorkerVersion=5.0.0.0-Fox1.0 -simulatorVersion=5.0.0.0-Fox1.0 - -# Specify the version of the notary plugins to use. -# Currently packaged as part of corda-runtime-os, so should be set to a corda-runtime-os version. -cordaNotaryPluginsVersion=5.0.0.0-Fox1.0 - -# Specify the version of the cordapp-cpb and cordapp-cpk plugins -cordaPluginsVersion=7.0.1 - -# For the time being this just needs to be set to a dummy value. -platformVersion = 999 - -# Version of Kotlin to use. -# We recommend using a version close to that used by Corda-API. -kotlinVersion = 1.7.21 - -# Do not use default dependencies. -kotlin.stdlib.default.dependency=false - -# Test Tooling Dependency Versions -junitVersion = 5.8.2 -mockitoKotlinVersion=4.0.0 -mockitoVersion=4.6.1 -hamcrestVersion=2.2 - -cordaClusterURL=https://localhost:8888 -cordaRpcUser=admin -cordaRpcPasswd=admin -devEnvWorkspace=workspace -dbContainerName=CSDEpostgresql - +kotlin.code.style=official + +# Specify the version of the Corda-API to use. +# This needs to match the version supported by the Corda Cluster the CorDapp will run on. +cordaApiVersion=5.0.0.523-Fox1.0 + +# Settings For Development Utilities +combinedWorkerVersion=5.0.0.0-Fox1.0 +simulatorVersion=5.0.0.0-Fox1.0 + +# Specify the version of the notary plugins to use. +# Currently packaged as part of corda-runtime-os, so should be set to a corda-runtime-os version. +cordaNotaryPluginsVersion=5.0.0.0-Fox1.0 + +# Specify the version of the cordapp-cpb and cordapp-cpk plugins +cordaPluginsVersion=7.0.1 + +# For the time being this just needs to be set to a dummy value. +platformVersion = 999 + +# Version of Kotlin to use. +# We recommend using a version close to that used by Corda-API. +kotlinVersion = 1.7.21 + +# Do not use default dependencies. +kotlin.stdlib.default.dependency=false + +# Test Tooling Dependency Versions +junitVersion = 5.8.2 +mockitoKotlinVersion=4.0.0 +mockitoVersion=4.6.1 +hamcrestVersion=2.2 + +postgresqlVersion=42.4.3 + +cordaClusterURL=https://localhost:8888 +cordaRpcUser=admin +cordaRpcPasswd=admin +devEnvWorkspace=workspace +dbContainerName=CSDEpostgresql +