From e075e523770b7dc652b13e9a1550c05e5fa30af5 Mon Sep 17 00:00:00 2001 From: Chris Rankin Date: Thu, 31 Aug 2017 08:19:20 +0100 Subject: [PATCH] Update Gradle for verify-enclave project. (#30) --- verify-enclave/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/verify-enclave/build.gradle b/verify-enclave/build.gradle index db4c67f5c6..f113c34211 100644 --- a/verify-enclave/build.gradle +++ b/verify-enclave/build.gradle @@ -57,13 +57,13 @@ jar { } task integrationTest(type: Test) { - testClassesDir = sourceSets.integrationTest.output.classesDir + testClassesDirs = sourceSets.integrationTest.output.classesDirs classpath = sourceSets.integrationTest.runtimeClasspath jvmArgs '-Djava.library.path=../sgx-jvm/jvm-enclave/jni/build' } task generateNativeSgxHeaders(type: Exec) { - def classpath = sourceSets.main.output.classesDir + def classpath = sourceSets.main.output.classesDirs.asPath commandLine "javah", "-o", "build/native/include/jni_sgx_api.h", "-cp", classpath, "com.r3.enclaves.txverify.NativeSgxApi" dependsOn classes }