You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by km...@apache.org on 2016/12/22 00:48:01 UTC

[1/2] geode git commit: GEODE-2231 Revise partitioned README instructions to use gradle wrapper and also give full path to gfsh.

Repository: geode
Updated Branches:
  refs/heads/feature/GEODE-2231 7e37dcb04 -> 786b79c00


GEODE-2231 Revise partitioned README instructions to
use gradle wrapper and also give full path to gfsh.


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

Branch: refs/heads/feature/GEODE-2231
Commit: 4c982fa2457405c58e73de05b91e993f248465ab
Parents: 7e37dcb
Author: Karen Miller <km...@pivotal.io>
Authored: Tue Dec 20 17:15:45 2016 -0800
Committer: Karen Miller <km...@pivotal.io>
Committed: Tue Dec 20 17:15:45 2016 -0800

----------------------------------------------------------------------
 geode-examples/partitioned/README.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/4c982fa2/geode-examples/partitioned/README.md
----------------------------------------------------------------------
diff --git a/geode-examples/partitioned/README.md b/geode-examples/partitioned/README.md
index af0d927..afbd0f3 100644
--- a/geode-examples/partitioned/README.md
+++ b/geode-examples/partitioned/README.md
@@ -23,21 +23,21 @@ run a script that starts a locator and two servers:
 
 2. Run the producer to put 50 entries into ```myRegion```:
 
-        $ gradle run -Pmain=Producer
+        $ ../gradlew run -Pmain=Producer
         ...
         ... 
         INFO: Done. Inserted 50 entries.
 
 3. Run the consumer to observe that there are 50 entries in ```myRegion```:
 
-        $ gradle run -Pmain=Consumer
+        $ ../gradlew run -Pmain=Consumer
         ...
         ...
         INFO: Done. 50 entries available on the server(s).
 
     Note that this observation may also be made with ```gfsh```:
  
-        $ gfsh
+        $ $GEODE_HOME/bin/gfsh
         ...
         gfsh>connect
         gfsh>describe region --name=myRegion
@@ -58,7 +58,7 @@ run a script that starts a locator and two servers:
 
 4. Kill one of the servers:
 
-        $ gfsh
+        $ $GEODE_HOME/bin/gfsh
         ...
         gfsh>connect
         gfsh>stop server --name=server1
@@ -67,14 +67,14 @@ run a script that starts a locator and two servers:
 5. Run the consumer a second time, and notice that only approximately half of
 the entries are still available: 
 
-        $ gradle run -Pmain=Consumer
+        $ ../gradlew run -Pmain=Consumer
         ...
         ...
         INFO: Done. 25 entries available on the server(s).
 
     Again, this observation may also be made with ```gfsh```:
 
-        $ gfsh
+        $ $GEODE_HOME/bin/gfsh
         ...
         gfsh>connect
         gfsh>describe region --name=myRegion


[2/2] geode git commit: GEODE-2231 Add runtime dependency for slf4j

Posted by km...@apache.org.
GEODE-2231 Add runtime dependency for slf4j


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

Branch: refs/heads/feature/GEODE-2231
Commit: 786b79c0066db89f0513a229502c6df58cba7cb1
Parents: 4c982fa
Author: Karen Miller <km...@pivotal.io>
Authored: Wed Dec 21 14:23:06 2016 -0800
Committer: Karen Miller <km...@pivotal.io>
Committed: Wed Dec 21 14:23:06 2016 -0800

----------------------------------------------------------------------
 geode-examples/build.gradle      | 1 +
 geode-examples/gradle.properties | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/786b79c0/geode-examples/build.gradle
----------------------------------------------------------------------
diff --git a/geode-examples/build.gradle b/geode-examples/build.gradle
index 1e638bc..2cde62e 100644
--- a/geode-examples/build.gradle
+++ b/geode-examples/build.gradle
@@ -34,6 +34,7 @@ subprojects {
         testCompile "org.mockito:mockito-core:$mockitocoreVersion"
         compile "org.apache.commons:commons-exec:$commonsExecVersion"
         compile "com.jayway.awaitility:awaitility:$awaitilityVersion"
+        runtime "org.slf4j:slf4j-log4j12:$slf4jVersion"
     }
 
     task run(type: JavaExec) {

http://git-wip-us.apache.org/repos/asf/geode/blob/786b79c0/geode-examples/gradle.properties
----------------------------------------------------------------------
diff --git a/geode-examples/gradle.properties b/geode-examples/gradle.properties
index c1739af..fc5ffd9 100644
--- a/geode-examples/gradle.properties
+++ b/geode-examples/gradle.properties
@@ -19,3 +19,4 @@ junitVersion = 4.12
 mockitocoreVersion = 1.10.19
 commonsExecVersion = 1.3
 awaitilityVersion = 1.7.0
+slf4jVersion = 1.7.22