From 79aec3b3c52bc8f5022cc158df4d72b689d61871 Mon Sep 17 00:00:00 2001 From: nmittler Date: Thu, 3 Sep 2015 13:48:21 -0700 Subject: [PATCH] Enabling openssl in interop-testing scripts --- interop-testing/build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/interop-testing/build.gradle b/interop-testing/build.gradle index 6c60c38b55..210cc583e5 100644 --- a/interop-testing/build.gradle +++ b/interop-testing/build.gradle @@ -23,7 +23,8 @@ dependencies { project(':grpc-testing'), libraries.junit, libraries.mockito, - libraries.oauth_client + libraries.oauth_client, + libraries.netty_tcnative } test { @@ -33,6 +34,7 @@ test { task test_client(type: CreateStartScripts) { mainClassName = "io.grpc.testing.integration.TestServiceClient" applicationName = "test-client" + // Only used when OpenSSL is not available. defaultJvmOpts = ["-Xbootclasspath/p:" + configurations.alpnboot.asPath] outputDir = new File(project.buildDir, 'tmp') classpath = jar.outputs.files + project.configurations.runtime @@ -41,6 +43,7 @@ task test_client(type: CreateStartScripts) { task test_server(type: CreateStartScripts) { mainClassName = "io.grpc.testing.integration.TestServiceServer" applicationName = "test-server" + // Only used when OpenSSL is not available. defaultJvmOpts = ["-Xbootclasspath/p:" + configurations.alpnboot.asPath] outputDir = new File(project.buildDir, 'tmp') classpath = jar.outputs.files + project.configurations.runtime @@ -49,6 +52,7 @@ task test_server(type: CreateStartScripts) { task reconnect_test_client(type: CreateStartScripts) { mainClassName = "io.grpc.testing.integration.ReconnectTestClient" applicationName = "reconnect-test-client" + // Only used when OpenSSL is not available. defaultJvmOpts = ["-Xbootclasspath/p:" + configurations.alpnboot.asPath] outputDir = new File(project.buildDir, 'tmp') classpath = jar.outputs.files + project.configurations.runtime