-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.sbt
40 lines (26 loc) · 1010 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
enablePlugins(PackPlugin)
packMain := Map("repetita" -> "edu.repetita.main.Main")
name := "Repetita"
version := "0.1.0"
scalaVersion := "2.13.6"
resolvers += "Mvn" at "https://cogcomp.seas.upenn.edu/m2repo/"
resolvers += "jitpack" at "https://jitpack.io"
// Adding a library dependency for ScalaTest
libraryDependencies ++= Seq(
"com.github.pschaus.oscar" % "oscar-cp_2.13" % "main-b5cb0738c5-1",
"org.scalatest" %% "scalatest" % "3.2.16" % Test,
"org.apache.commons" % "commons-lang3" % "3.13.0",
"net.sourceforge.collections" % "collections-generic" % "4.01",
"net.sf.jung" % "jung-algorithms" % "2.1.1",
"net.sf.jung" % "jung-visualization" % "2.1.1",
"net.sf.jung" % "jung-graph-impl" % "2.1.1",
"org.scala-lang.modules" %% "scala-xml" % "2.2.0",
"junit" % "junit" % "4.12",
"com.novocode" % "junit-interface" % "0.11" % Test
)
// Some common options for the Scala compiler
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-feature"
)