-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
35 lines (18 loc) · 944 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
import com.typesafe.sbt.SbtStartScript
scalaVersion := "2.10.1"
name := "graphsc"
scalacOptions += "-deprecation"
testOptions in Test += Tests.Argument("-P")
testOptions in Test += Tests.Argument("-oD")
mainClass in Compile := Some("graphsc.app.MainApp")
//mainClass in oneJar := Some("graphsc.app.MainApp")
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % "test"
libraryDependencies += "junit" % "junit" % "4.8.1" % "test"
libraryDependencies += "org.rogach" %% "scallop" % "0.9.2"
//libraryDependencies += "org.tinyjee.jgraphx" % "jgraphx" % "2.0.0.1"
libraryDependencies += "net.sf.jung" % "jung-graph-impl" % "2.0.1"
libraryDependencies += "net.sf.jung" % "jung-visualization" % "2.0.1"
libraryDependencies += "org.scala-lang" % "scala-swing" % "2.10.1"
//seq(com.github.retronym.SbtOneJar.oneJarSettings: _*)
seq(SbtStartScript.startScriptForClassesSettings: _*)
//seq(ScctPlugin.instrumentSettings : _*)