Inside Zeppelin I want to be able to dynamically load the jars to Livy from a corporate repository.
livy.spark.jars.packages
only applies to the interpreter configuration which is restricted due to security constraints.
How can I once setup the allowed repositories in zeppelin and then pull the jars dynamically for Livy similar to what:
%spark.dep
z.reset() // clean up previously added artifact and repository
// add maven repository
z.addRepo("RepoName").url("RepoURL")
// add artifact from maven repository, with no dependency
z.load("groupId:artifactId:version")
provides