You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2016/05/25 22:27:39 UTC

[17/34] incubator-geode git commit: GEODE-1417: geode-web:war task does not include the necessary web components from core

GEODE-1417: geode-web:war task does not include the necessary web components from core


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/6483ae38
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/6483ae38
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/6483ae38

Branch: refs/heads/feature/GEODE-835
Commit: 6483ae381e87c3d1f8b1eae7d670288d130aae1b
Parents: 45a4ef2
Author: Jens Deppe <jd...@pivotal.io>
Authored: Thu May 19 10:43:19 2016 -0700
Committer: Jens Deppe <jd...@pivotal.io>
Committed: Tue May 24 07:39:45 2016 -0700

----------------------------------------------------------------------
 geode-web/build.gradle | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/6483ae38/geode-web/build.gradle
----------------------------------------------------------------------
diff --git a/geode-web/build.gradle b/geode-web/build.gradle
index 228751b..75844d3 100755
--- a/geode-web/build.gradle
+++ b/geode-web/build.gradle
@@ -73,14 +73,16 @@ idea.module.iml {
 }
 
 distributedTest {
-  dependsOn ':geode-core:webJar', 'war'
+  dependsOn war
 }
 
 integrationTest {
-  dependsOn ':geode-core:webJar', 'war'
+  dependsOn war
 }
 
 war {
-  classpath configurations.runtime 
+  dependsOn ':geode-core:webJar'
+
+  classpath configurations.runtime
   classpath project(':geode-core').webJar.archivePath
 }