, Sparko. .
uber-jar, sbt-assembly, . . , , , .
sbt-assembly , - , , . , Spark, Uber Jars Shading sbt-assembly, . :
, , Spark . build.sbt :
assemblyShadeRules : = Seq (
ShadeRule.rename( "com.typesafe.config. **" → "my_conf. @1" ) .inLibrary( "com.typesafe" % "config" % "1.3.0" ) .inProject)
, com.typesafe.config my_conf.
- build.sbt:
assemblyShadeRules in assembly := Seq(
ShadeRule.rename("com.somecompany.**" -> "my_conf.@1")
.inLibrary("com.somecompany" % "libraryZ" % "0.11")
.inProject
)