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/04/28 19:05:43 UTC

incubator-geode git commit: Revert module exclusions

Repository: incubator-geode
Updated Branches:
  refs/heads/feature/GEODE-1276 1e90a7225 -> 9eee19f13


Revert module exclusions


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

Branch: refs/heads/feature/GEODE-1276
Commit: 9eee19f13a4180ae0d8bb6002346366ea2ba7f1a
Parents: 1e90a72
Author: Kirk Lund <kl...@apache.org>
Authored: Thu Apr 28 10:05:22 2016 -0700
Committer: Kirk Lund <kl...@apache.org>
Committed: Thu Apr 28 10:05:22 2016 -0700

----------------------------------------------------------------------
 geode-pulse/build.gradle | 12 ++++++------
 gradle/test.gradle       |  9 ++-------
 2 files changed, 8 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/9eee19f1/geode-pulse/build.gradle
----------------------------------------------------------------------
diff --git a/geode-pulse/build.gradle b/geode-pulse/build.gradle
index fe5a132..862bacb 100755
--- a/geode-pulse/build.gradle
+++ b/geode-pulse/build.gradle
@@ -26,6 +26,10 @@ sourceSets {
 }
 
 dependencies {
+
+
+
+
   compile 'org.springframework:spring-beans:' + project.'springframework.version'
   
   compile 'commons-beanutils:commons-beanutils:' + project.'commons-beanutils.version'
@@ -67,13 +71,9 @@ dependencies {
   testCompile project(':geode-junit')
   testCompile project(':geode-core')
 
-  testCompile ('org.seleniumhq.selenium:selenium-firefox-driver:' + project.'selenium.version') {
-    exclude module: 'cglib-nodep'
-  }
+  testCompile 'org.seleniumhq.selenium:selenium-firefox-driver:' + project.'selenium.version'
   testCompile 'org.seleniumhq.selenium:selenium-api:' + project.'selenium.version'
-  testCompile ('org.seleniumhq.selenium:selenium-remote-driver:' + project.'selenium.version') {
-    exclude module: 'cglib-nodep'
-  }
+  testCompile 'org.seleniumhq.selenium:selenium-remote-driver:' + project.'selenium.version'
   testCompile 'org.seleniumhq.selenium:selenium-support:' + project.'selenium.version'
   testCompile 'org.springframework:spring-test:' + project.'springframework.version'
   testCompile 'org.powermock:powermock-core:' + project.'powermock.version'

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/9eee19f1/gradle/test.gradle
----------------------------------------------------------------------
diff --git a/gradle/test.gradle b/gradle/test.gradle
index 8dd4074..2dd7521 100644
--- a/gradle/test.gradle
+++ b/gradle/test.gradle
@@ -50,9 +50,7 @@ subprojects {
       exclude module: 'junit-dep'
     }
     testCompile 'com.google.code.tempus-fugit:tempus-fugit:' + project.'tempus-fugit.version'
-    testCompile ('com.jayway.awaitility:awaitility:' + project.'awaitility.version') {
-      exclude module: 'cglib-nodep'
-    }
+    testCompile 'com.jayway.awaitility:awaitility:' + project.'awaitility.version'
     testCompile 'edu.umd.cs.mtc:multithreadedtc:' + project.'multithreadedtc.version'
     testCompile 'eu.codearte.catch-exception:catch-exception:' + project.'catch-exception.version'
     testCompile 'eu.codearte.catch-exception:catch-throwable:' + project.'catch-throwable.version'
@@ -60,10 +58,7 @@ subprojects {
     testCompile 'org.assertj:assertj-core:' + project.'assertj-core.version'
     testCompile 'org.mockito:mockito-core:' + project.'mockito-core.version'
     testCompile 'org.hamcrest:hamcrest-all:' + project.'hamcrest-all.version'
-    testCompile ('org.jmock:jmock-junit4:' + project.'jmock.version') {
-      exclude module: 'asm'
-      exclude module: 'cglib'
-    }
+    testCompile 'org.jmock:jmock-junit4:' + project.'jmock.version'
     testCompile 'org.jmock:jmock-legacy:' + project.'jmock.version'
     testCompile 'pl.pragmatists:JUnitParams:' + project.'JUnitParams.version'