-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathplugins.sbt
More file actions
27 lines (15 loc) · 869 Bytes
/
plugins.sbt
File metadata and controls
27 lines (15 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import sbtassembly.ShadeRule
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.5")
resolvers += "Spark Package Main Repo" at "https://dl.bintray.com/spark-packages/maven"
addSbtPlugin("org.spark-packages" % "sbt-spark-package" % "0.2.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.0")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.8.0")
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
libraryDependencies += "org.apache.maven" % "maven-artifact" % "3.3.9"
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.5")
//assemblyShadeRules in assembly := Seq(
// ShadeRule.rename("com.databricks.spark.redshift.**" -> "edmunds.@1").inProject
//)