-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
23 lines (16 loc) · 919 Bytes
/
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
import sbt.ExclusionRule
name := "scala-common"
organization := "com.igumnov.scala"
version := "0.5"
scalaVersion := "2.11.7"
libraryDependencies += "com.igumnov" % "common" % "9.4" excludeAll(
ExclusionRule(organization = "org.eclipse.jetty"),
ExclusionRule(organization = "com.fasterxml.jackson"),
ExclusionRule(organization = "org.scala-lang.modules"))
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.4" % "test"
libraryDependencies += "com.fasterxml.jackson.module" % "jackson-module-scala_2.11" % "2.6.0-1"
libraryDependencies += "org.eclipse.jetty" % "jetty-server" % "9.3.1.v20150714"
libraryDependencies += "org.eclipse.jetty" % "jetty-servlet" % "9.3.1.v20150714"
libraryDependencies += "org.eclipse.jetty" % "jetty-security" % "9.3.1.v20150714"
libraryDependencies += "com.h2database" % "h2" % "1.4.187" % "test"
addCompilerPlugin("org.psywerx.hairyfotr" %% "linter" % "0.1.12")