Merge pull request #940 from nmittler/interop_openssl

Enabling openssl in interop-testing scripts
This commit is contained in:
Nathan Mittler 2015-09-03 15:01:14 -07:00
commit 2aecb6f02b
1 changed files with 5 additions and 1 deletions

View File

@ -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