Tips from my experience. Disable scaladoc:

sources in doc in Compile := List()

Do not package the source:

publishArtifact in packageSrc := false

And most importantly do not run "sbt assembly". It creates a fat jar. Use
"sbt package" or "sbt stage" (from sbt-native-packager). They create a
directory full of jars, and only need to update the one containing your
code.



On Tue, Apr 29, 2014 at 8:50 PM, SK <skrishna...@gmail.com> wrote:

> Each time I run sbt/sbt assembly to compile my program, the packaging time
> takes about 370 sec (about 6 min). How can I reduce this time?
>
> thanks
>
>
>
> --
> View this message in context:
> http://apache-spark-user-list.1001560.n3.nabble.com/packaging-time-tp5048.html
> Sent from the Apache Spark User List mailing list archive at Nabble.com.
>

Reply via email to