You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2016/02/19 19:17:48 UTC

[1/2] incubator-geode git commit: Not including gradle generated directories in the source distribution

Repository: incubator-geode
Updated Branches:
  refs/heads/develop e51d1e447 -> f5e43c506


Not including gradle generated directories in the source distribution

Our nightly jenkins job builds a source distribution. But because it's
set to use the current directory as the gradle home, gradle puts some
files in the current directory that are then getting added to the
nightly source distribution.


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

Branch: refs/heads/develop
Commit: d84bcef51f7c394077d84c97cbd6b6906d502dcb
Parents: e51d1e4
Author: Dan Smith <up...@apache.org>
Authored: Wed Feb 17 10:24:42 2016 -0800
Committer: Dan Smith <up...@apache.org>
Committed: Fri Feb 19 10:12:42 2016 -0800

----------------------------------------------------------------------
 gemfire-assembly/build.gradle | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d84bcef5/gemfire-assembly/build.gradle
----------------------------------------------------------------------
diff --git a/gemfire-assembly/build.gradle b/gemfire-assembly/build.gradle
index 96a03d4..51bb8f3 100755
--- a/gemfire-assembly/build.gradle
+++ b/gemfire-assembly/build.gradle
@@ -236,6 +236,12 @@ distributions {
         exclude '**/*.ipr'
         exclude '**/*.iws'
         exclude '**/tags'
+
+        //These directories are generated on the jenkins server by gradle
+        exclude 'caches'
+        exclude 'daemon'
+        exclude 'native'
+        exclude 'wrapper'
       }
     }
   }


[2/2] incubator-geode git commit: Ugrade selenium driver for pulse tests

Posted by up...@apache.org.
Ugrade selenium driver for pulse tests

The latest versions of firefox block the old driver because it is not
signed.


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

Branch: refs/heads/develop
Commit: f5e43c506fa1e5d2d60bf508d4be531471e60154
Parents: d84bcef
Author: Dan Smith <up...@apache.org>
Authored: Thu Feb 18 17:14:21 2016 -0800
Committer: Dan Smith <up...@apache.org>
Committed: Fri Feb 19 10:15:18 2016 -0800

----------------------------------------------------------------------
 gemfire-pulse/build.gradle | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/f5e43c50/gemfire-pulse/build.gradle
----------------------------------------------------------------------
diff --git a/gemfire-pulse/build.gradle b/gemfire-pulse/build.gradle
index 50369fb..c13efa2 100755
--- a/gemfire-pulse/build.gradle
+++ b/gemfire-pulse/build.gradle
@@ -66,10 +66,10 @@ dependencies {
   testCompile 'org.apache.tomcat.embed:tomcat-embed-core:7.0.30'
   testCompile 'org.apache.tomcat.embed:tomcat-embed-jasper:7.0.30'
   testCompile 'org.apache.tomcat.embed:tomcat-embed-logging-juli:7.0.30'
-  testCompile 'org.seleniumhq.selenium:selenium-firefox-driver:2.47.2'
-  testCompile 'org.seleniumhq.selenium:selenium-api:2.47.2'
-  testCompile 'org.seleniumhq.selenium:selenium-remote-driver:2.47.2'
-  testCompile 'org.seleniumhq.selenium:selenium-support:2.47.2'
+  testCompile 'org.seleniumhq.selenium:selenium-firefox-driver:2.52.0'
+  testCompile 'org.seleniumhq.selenium:selenium-api:2.52.0'
+  testCompile 'org.seleniumhq.selenium:selenium-remote-driver:2.52.0'
+  testCompile 'org.seleniumhq.selenium:selenium-support:2.52.0'
 
   testRuntime 'com.google.code.gson:gson:2.3.1'
   testRuntime 'org.apache.commons:commons-exec:1.3'