You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by vi...@apache.org on 2020/01/23 07:43:56 UTC

[incubator-hudi] branch master updated: [HUDI-549] update Github README with instructions to build with Scala 2.12 (#1275)

This is an automated email from the ASF dual-hosted git repository.

vinoth pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new 1e79cbc  [HUDI-549] update Github README with instructions to build with Scala 2.12 (#1275)
1e79cbc is described below

commit 1e79cbc259b92f75e5fd387c0271b163532aebb9
Author: Bhavani Sudha Saktheeswaran <bh...@uber.com>
AuthorDate: Wed Jan 22 23:43:50 2020 -0800

    [HUDI-549] update Github README with instructions to build with Scala 2.12 (#1275)
---
 README.md | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/README.md b/README.md
index adb630f..4276c04 100644
--- a/README.md
+++ b/README.md
@@ -63,6 +63,16 @@ To build the Javadoc for all Java and Scala classes:
 mvn clean javadoc:aggregate -Pjavadocs
 ```
 
+### Build with Scala 2.12
+
+The default Scala version supported is 2.11. To build for Scala 2.12 version, after code checkout run dev/change-scala-version.sh 
+and build using `scala-2.12` profile
+
+```
+dev/change-scala-version 2.12
+mvn clean package -DskipTests -DskipITs -Pscala-2.12
+```
+
 ## Quickstart
 
 Please visit [https://hudi.apache.org/quickstart.html](https://hudi.apache.org/quickstart.html) to quickly explore Hudi's capabilities using spark-shell.