Re:RE: How to build single jar for single project in spark

2019-03-27 Thread zhangliyun
rg Date:2019-03-26 14:34:20 Subject:RE: How to build single jar for single project in spark You can try this https://spark.apache.org/docs/latest/building-spark.html#building-submodules-individually Thanks, Gerry From: zhangliyun Sent: 2019年3月26日 16:50 To: dev@spark.apache.org Su

RE: How to build single jar for single project in spark

2019-03-26 Thread Ajith shetty
You can try using -pl maven option for this > mvn clean install -pl :spark-core_2.11 From:Qiu, Gerry To:zhangliyun ;dev@spark.apache.org Date:2019-03-26 14:34:20 Subject:RE: How to build single jar for single project in spark You can try this https://spark.apache.org/docs/latest/build

RE: How to build single jar for single project in spark

2019-03-26 Thread Qiu, Gerry
You can try this https://spark.apache.org/docs/latest/building-spark.html#building-submodules-individually Thanks, Gerry From: zhangliyun Sent: 2019年3月26日 16:50 To: dev@spark.apache.org Subject: How to build single jar for single project in spark Hi all: I have a question when i modify one

How to build single jar for single project in spark

2019-03-26 Thread zhangliyun
Hi all: I have a question when i modify one file in spark project like org/apache/spark/sql/execution/ui/SparkPlanGraph.scala. Can i only build the single jar spark-core_2.11-2.3.2.jar? After finishing building the single jar then copy the jar to $SPARK_HOME/jars directory. If anyone knows