diff --git a/.gitignore b/.gitignore index b9a99ba..7b697a0 100644 --- a/.gitignore +++ b/.gitignore @@ -88,4 +88,6 @@ workspace/** #GroupPolicy.json # Ignore temporary data files -*.dat \ No newline at end of file +*.dat + +.vscode/ \ No newline at end of file diff --git a/build.gradle b/build.gradle index 817e08f..e852ddb 100644 --- a/build.gradle +++ b/build.gradle @@ -19,13 +19,13 @@ allprojects { csde { cordaClusterURL = "https://localhost:8888" networkConfigFile = "$rootDir/config/static-network-config.json" - r3RootCertFile = "$rootDir/config/r3-ca-key.pem" + r3RootCertFile = "config/r3-ca-key.pem" corDappCpiName = "MyCorDapp" notaryCpiName = "NotaryServer" cordaRpcUser = "admin" cordaRpcPasswd ="admin" workflowsModuleName = workflowsModule - csdeWorkspaceDir = "workspace" + csdeWorkspaceDir = "$rootDir/workspace" notaryVersion = cordaNotaryPluginsVersion combinedWorkerVersion = combinedWorkerJarVersion postgresJdbcVersion = "42.4.3" diff --git a/gradle.properties b/gradle.properties index 282b05a..21d41e7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -34,4 +34,7 @@ kotlin.stdlib.default.dependency=false junitVersion = 5.8.2 mockitoKotlinVersion=4.0.0 mockitoVersion=4.6.1 -hamcrestVersion=2.2 \ No newline at end of file +hamcrestVersion=2.2 + +# Use JDK Zulu 11 +org.gradle.java.home=/Library/Java/JavaVirtualMachines/zulu-11.jdk/Contents/Home