You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by pr...@apache.org on 2018/08/29 20:37:22 UTC

[geode] branch develop updated: GEODE-5536: Force unitTest compilation to be dependency of source classes (#2337)

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

prhomberg pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 574530c  GEODE-5536: Force unitTest compilation to be dependency of source classes (#2337)
574530c is described below

commit 574530cf55cad5011754eaee6c598b6ef8934e2e
Author: Robert Houghton <rh...@pivotal.io>
AuthorDate: Wed Aug 29 13:37:16 2018 -0700

    GEODE-5536: Force unitTest compilation to be dependency of source classes (#2337)
    
    * This dependency is consistent with all other test targets.
    
    Co-authored-by: Robert Houghton <rh...@pivotal.io>
    Co-authored-by: Dick Cavender <dc...@pivotal.io>
---
 gradle/test.gradle | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gradle/test.gradle b/gradle/test.gradle
index 1a70659..c4479ac 100644
--- a/gradle/test.gradle
+++ b/gradle/test.gradle
@@ -314,6 +314,7 @@ subprojects {
   }
 }
 
+classes.dependsOn subprojects.compileTestJava
 classes.dependsOn subprojects.compileIntegrationTestJava
 classes.dependsOn subprojects.compileDistributedTestJava
 classes.dependsOn subprojects.compileAcceptanceTestJava