Hello all, could you please hint me on how to permanently add a dependency to zeppelin, without using the ZeppelinContext?
I use 'org.apache.spark:spark-streaming-kinesis-asl_2.10' in all of my notebooks, so instead of having to run: z.load("org.apache.spark:spark-streaming-kinesis-asl_2.10:1.5.0") I would like to permanently add this dependency to the Zeppelin server, as I would normally do in SBT: libraryDependencies ++= Seq("org.apache.spark" %% "spark-streaming-kinesis-asl_2.10" % "1.5.0") Is there any config/sbt file I can add it to, so it is automatically loaded? I assume I would have to restart the zeppelin-daemon after adding it, but that is ok, I do not mind :) Thank you, Josef