Repository: spark Updated Branches: refs/heads/master cd28139c9 -> 60150cf00
[SPARK-10883] Add a note about how to build Spark sub-modules (reactor) Author: Jean-Baptiste Onofré <[email protected]> Closes #8993 from jbonofre/SPARK-10883-2. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/60150cf0 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/60150cf0 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/60150cf0 Branch: refs/heads/master Commit: 60150cf00a70e684d2cad864ab055ad53106938b Parents: cd28139 Author: Jean-Baptiste Onofré <[email protected]> Authored: Thu Oct 8 11:38:39 2015 +0100 Committer: Sean Owen <[email protected]> Committed: Thu Oct 8 11:38:39 2015 +0100 ---------------------------------------------------------------------- docs/building-spark.md | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/60150cf0/docs/building-spark.md ---------------------------------------------------------------------- diff --git a/docs/building-spark.md b/docs/building-spark.md index 4db32cf..4d929ee 100644 --- a/docs/building-spark.md +++ b/docs/building-spark.md @@ -144,6 +144,17 @@ The ScalaTest plugin also supports running only a specific test suite as follows mvn -Dhadoop.version=... -DwildcardSuites=org.apache.spark.repl.ReplSuite test +# Building submodules individually + +It's possible to build Spark sub-modules using the `mvn -pl` option. + +For instance, you can build the Spark Streaming module using: + +{% highlight bash %} +mvn -pl :spark-streaming_2.10 clean install +{% endhighlight %} + +where `spark-streaming_2.10` is the `artifactId` as defined in `streaming/pom.xml` file. # Continuous Compilation --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
