You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
seems like a regression at some point? or maybe we're doing something wrong, because i don't see how this wouldn't be a bigger issue. we're upgrading from v0.12 (which copies runtime dependencies) to v0.17, and the runtime jars are no longer included in lib so we're crashing at startup
Hi!
I'm trying to copy a runtime dependency "mysql-connector-java" which is defined as:
lazy val hbase = (project in file("hbase")) .enablePlugins(PackPlugin) .settings( libraryDependencies ++= Seq( // add hadoop dependencies "org.apache.hbase" % "hbase-client" % "1.4.13", "org.apache.spark" %% "spark-core" % sparkVersion, "org.apache.spark" %% "spark-sql" % sparkVersion, // mysql driver "mysql" % "mysql-connector-java" % "5.1.49" % Runtime), ) )
Launching sbt hbase/pack doesn't copy the mysql-*.jar to the /lib directory.
Do I have to configure something more to force the copy of that jar to the /lib directory?
thanks!
The text was updated successfully, but these errors were encountered: