forked from risksense/ipaddr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
29 lines (26 loc) · 852 Bytes
/
Copy pathbuild.sbt
File metadata and controls
29 lines (26 loc) · 852 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
28
lazy val typesafeReleases = "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
lazy val root = (project in file("."))
.settings(
name := "ipaddr",
organization := "com.risksense",
version := "1.0.0",
resolvers ++= Seq(
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
),
scalaVersion := "2.11.8",
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-explaintypes",
"-Xcheckinit",
"-Xlint",
"-Xverify",
"-target:jvm-1.8"),
resolvers ++= Seq(typesafeReleases),
libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % "1.1.7",
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
"org.scalactic" %% "scalactic" % "3.0.1",
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
)
)