This is an automated email from the ASF dual-hosted git repository.

jbarrett pushed a commit to branch feature/GEODE-5363
in repository https://gitbox.apache.org/repos/asf/geode.git

commit e1fa87ed1809f58eff7752a05704e6675b0caf5c
Author: Jacob Barrett <jbarr...@pivotal.io>
AuthorDate: Fri Jun 29 20:13:59 2018 -0700

    GEODE-5363: Creates distributed test source set.
---
 geode-core/build.gradle | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/geode-core/build.gradle b/geode-core/build.gradle
index f8a0c5d..97e983e 100755
--- a/geode-core/build.gradle
+++ b/geode-core/build.gradle
@@ -33,6 +33,8 @@ configurations {
   archives
   integrationTestCompile.extendsFrom testCompile
   integrationTestRuntime.extendsFrom testRuntime
+  distributedTestCompile.extendsFrom integrationTestCompile
+  distributedTestRuntime.extendsFrom integrationTestRuntime
 }
 
 dependencies {
@@ -187,6 +189,14 @@ sourceSets {
     }
     resources.srcDir file('src/integrationTest/resources')
   }
+  distributedTest {
+    java {
+      compileClasspath += main.output + test.output
+      runtimeClasspath += main.output + test.output
+      srcDir file('src/distributedTest/java')
+    }
+    resources.srcDir file('src/distributedTest/resources')
+  }
 }
 
 jmh {

Reply via email to