forked from scalation/scalation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt.old
56 lines (35 loc) · 1.69 KB
/
build.sbt.old
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
47
48
49
50
51
52
53
54
55
////////////////////////////////////////////////////////////////////////////////
// build.sbt - specifications for Simple Build Tool
name := "scalation"
organization := "scalation"
version := "1.2"
scalaVersion := "2.12.2"
fork := true
////////////////////////////////////////////////////////////////////////////////
// Scala options
scalacOptions += "-deprecation"
scalacOptions += "-feature"
scalacOptions += "-Xfatal-warnings"
scalacOptions += "-opt:l:classpath" // optimize
scalacOptions += "-opt-warnings"
scalacOptions += "-Xlint:-adapted-args" // run lint - disable "adapted-args" (auto tupling used)
// scalacOptions += "-feature"
// scalacOptions += "-unchecked"
////////////////////////////////////////////////////////////////////////////////
// Java options
javaOptions += "-Xmx2G"
////////////////////////////////////////////////////////////////////////////////
// Scala Modules
// @see http://scala-lang.org/documentation/api.html
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value
////////////////////////////////////////////////////////////////////////////////
// Unit Testing
libraryDependencies += "junit" % "junit" % "4.11" % "test"
libraryDependencies += "com.novocode" % "junit-interface" % "0.8" % "test->default"
////////////////////////////////////////////////////////////////////////////////
// Fast Regex
// libraryDependencies += "dk.brics.automaton" % "automaton" % "1.11-8"
////////////////////////////////////////////////////////////////////////////////
// Java HTML Parser - needed for UCIML
// libraryDependencies += "org.jsoup" % "jsoup" % "1.8.2"