-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
24 lines (18 loc) · 1.13 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
sbtPlugin := true
name := "nice-sbt-settings"
organization := "ohnosequences"
description := "sbt plugin accumulating some useful and nice sbt settings"
scalaVersion := "2.12.7"
sbtVersion in Global := "1.2.6"
bucketSuffix := "era7.com"
resolvers += "Github-API" at "http://repo.jenkins-ci.org/public/"
addSbtPlugin("org.wartremover" % "sbt-wartremover" % "2.2.1") // https://github.com/puffnfresh/wartremover
addSbtPlugin("ohnosequences" % "sbt-s3-resolver" % "0.19.0") // https://github.com/ohnosequences/sbt-s3-resolver
addSbtPlugin("ohnosequences" % "sbt-github-release" % "0.7.1") // https://github.com/ohnosequences/sbt-github-release
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9") // https://github.com/sbt/sbt-assembly
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.4") // https://github.com/rtimush/sbt-updates
addSbtPlugin("com.markatta" % "sbt-taglist" % "1.4.0") // https://github.com/johanandren/sbt-taglist
dependencyOverrides ++= Seq(
"commons-codec" % "commons-codec" % "1.9",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.6.7.1"
)