-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
47 lines (30 loc) · 1.79 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name := "spectrum"
version := "0.0.1-SNAPSHOT"
organization := "org.quantintel"
licenses += ("Apache License, Version 2.0", url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
scalaVersion := "2.11.4"
crossScalaVersions := Seq("2.11.0")
javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
scalacOptions ++= Seq("-unchecked", "-deprecation")
scalacOptions in (Compile, doc) ++= Seq("-unchecked", "-deprecation", "-diagrams", "-groups", "-implicits", "-skip-packages", "samples")
resolvers ++= Seq(
"snapshots-repo" at "http://scala-tools.org/repo-snapshots",
"Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases",
"apache-releases" at "http://repository.apache.org/content/repositories/releases/",
"oss-sonatype-releases" at "http://oss.sonatype.org/content/repositories/releases",
"central" at "http://repo1.maven.org/maven2/",
"sonatype-releases" at "https://oss.sonatype.org/content/repositories/releases/",
"snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"scala-tools.org" at "https://oss.sonatype.org/content/groups/scala-tools/",
"Typesafe Releases" at "https://repo.typesafe.com/typesafe/releases/",
"Typesafe Simple Repository" at "http://repo.typesafe.com/typesafe/simple/maven-releases/")
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-library" % "2.11.4",
"org.scala-lang" % "scala-compiler" % "2.11.4",
"org.scala-lang" % "scalap" % "2.11.4",
"com.typesafe.play" % "play_2.11" % "2.3.5",
"org.scalatest" % "scalatest_2.11" % "2.2.2" % "test",
"org.scalastyle" % "scalastyle_2.11" % "0.6.0" % "test"
)
publishArtifact in Test := false
parallelExecution in Test := false