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

[36/50] [abbrv] incubator-geode git commit: Updating the spark building doc to use the sbt wrapper

Updating the spark building doc to use the sbt wrapper

We now have an sbt wrapper script checked in, so there is no need to
manually install sbt.


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

Branch: refs/heads/feature/GEODE-17-2
Commit: 8d4dfc2f71c341e1788ea036faaefd53d262482c
Parents: ac27ef5
Author: Dan Smith <up...@apache.org>
Authored: Wed Apr 20 12:26:13 2016 -0700
Committer: Dan Smith <up...@apache.org>
Committed: Wed Apr 20 12:26:13 2016 -0700

----------------------------------------------------------------------
 geode-spark-connector/doc/1_building.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8d4dfc2f/geode-spark-connector/doc/1_building.md
----------------------------------------------------------------------
diff --git a/geode-spark-connector/doc/1_building.md b/geode-spark-connector/doc/1_building.md
index 9b4d69e..ff3e285 100644
--- a/geode-spark-connector/doc/1_building.md
+++ b/geode-spark-connector/doc/1_building.md
@@ -1,6 +1,6 @@
 ## Building and Testing
 
-You will need Scala 2.10 and sbt 0.13.5 to 0.13.7.
+The spark connector is built with Scala 2.10 and sbt 0.13.5 to 0.13.7.
 
 ### Building Artifacts
 
@@ -13,7 +13,7 @@ to local repository. In the root of Geode directory, run:
 
 In the root directory of connector project, run:
 ```
-sbt clean package
+./sbt clean package
 ```
 
 The following jar files will be created:
@@ -24,12 +24,12 @@ The following jar files will be created:
 ### Testing
 Commands to run unit and integration tests:
 ```
-sbt test        // unit tests
-sbt it:test     // integration tests  
+./sbt test        // unit tests
+./sbt it:test     // integration tests  
 ```
 
 Integration tests start a Geode cluster and Spark in local mode.
-Please make sure you've done following before you run `sbt it:test`:
- - run`sbt package`
+Please make sure you've done following before you run `./sbt it:test`:
+ - run`./sbt package`
 
 Next: [Quick Start](2_quick.md)