forked from garyaiki/Scala-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
executable file
·36 lines (17 loc) · 881 Bytes
/
build.sbt
File metadata and controls
executable file
·36 lines (17 loc) · 881 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
29
30
31
32
33
name := "Scala-Algorithms"
version := "0.0.1"
scalaVersion := "2.10.3"
scalacOptions ++= Seq("-deprecation", "-feature")
//scalacOptions in Test ++= Seq("-Yrangepos")
site.settings
site.includeScaladoc()
org.scalastyle.sbt.ScalastylePlugin.Settings
libraryDependencies += "org.scalatest" % "scalatest_2.10" % "2.1.0" % "test"
libraryDependencies += "junit" % "junit" % "4.10" % "test"
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"
resolvers += "Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases"
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.11.3"
libraryDependencies += "org.specs2" %% "specs2" % "2.3.10" % "test"
val slf4jVersion = "1.7.6"
libraryDependencies += "org.slf4j" % "slf4j-api" % slf4jVersion
libraryDependencies += "org.slf4j" % "slf4j-simple" % slf4jVersion