You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by pw...@apache.org on 2014/03/06 01:38:51 UTC

git commit: Improve building with maven docs

Repository: spark
Updated Branches:
  refs/heads/master a3da50881 -> 51ca7bd70


Improve  building with maven  docs

     mvn -Dhadoop.version=... -Dsuites=spark.repl.ReplSuite test

to

     mvn -Dhadoop.version=... -Dsuites=org.apache.spark.repl.ReplSuite test

Author: liguoqiang <li...@rd.tuan800.com>

Closes #70 from witgo/building_with_maven and squashes the following commits:

6ec8a54 [liguoqiang] spark.repl.ReplSuite to org.apache.spark.repl.ReplSuite


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/51ca7bd7
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/51ca7bd7
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/51ca7bd7

Branch: refs/heads/master
Commit: 51ca7bd7038dd5f66327d5b15692a1ccaab42129
Parents: a3da508
Author: liguoqiang <li...@rd.tuan800.com>
Authored: Wed Mar 5 16:38:43 2014 -0800
Committer: Patrick Wendell <pw...@gmail.com>
Committed: Wed Mar 5 16:38:43 2014 -0800

----------------------------------------------------------------------
 docs/building-with-maven.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/51ca7bd7/docs/building-with-maven.md
----------------------------------------------------------------------
diff --git a/docs/building-with-maven.md b/docs/building-with-maven.md
index a982c4d..d3bc34e 100644
--- a/docs/building-with-maven.md
+++ b/docs/building-with-maven.md
@@ -56,7 +56,7 @@ Tests are run by default via the [ScalaTest Maven plugin](http://www.scalatest.o
 
 The ScalaTest plugin also supports running only a specific test suite as follows:
 
-    $ mvn -Dhadoop.version=... -Dsuites=spark.repl.ReplSuite test
+    $ mvn -Dhadoop.version=... -Dsuites=org.apache.spark.repl.ReplSuite test
 
 
 ## Continuous Compilation ##