From 6225c065fcdfa430aad6834f3327c0ec9da7da82 Mon Sep 17 00:00:00 2001 From: djmil Date: Wed, 2 Aug 2023 20:43:18 +0200 Subject: [PATCH] fix Gradle configure project error --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index d18663c..817e08f 100644 --- a/build.gradle +++ b/build.gradle @@ -18,8 +18,8 @@ allprojects { // Configure the CSDE csde { cordaClusterURL = "https://localhost:8888" - networkConfigFile = "config/static-network-config.json" - r3RootCertFile = "config/r3-ca-key.pem" + networkConfigFile = "$rootDir/config/static-network-config.json" + r3RootCertFile = "$rootDir/config/r3-ca-key.pem" corDappCpiName = "MyCorDapp" notaryCpiName = "NotaryServer" cordaRpcUser = "admin"