forked from jckuester/ltlfo2mon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
32 lines (18 loc) · 668 Bytes
/
Copy pathbuild.sbt
File metadata and controls
32 lines (18 loc) · 668 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
import AssemblyKeys._
assemblySettings
name := "ltlfo2mon"
version := "1.1"
scalaVersion := "2.10.4"
mainClass in (Compile, run) := Some("ltlfo2mon.cli.Ltlfo2mon")
retrieveManaged := true
jarName in assembly := "ltlfo2mon.jar"
test in assembly := {}
//mainClass in assembly := Some("ltlfo2mon.cli.Ltlfo2mon")
libraryDependencies ++= Seq(
"com.github.scopt" %% "scopt" % "2.1.0" withSources() withJavadoc(),
"org.scalatest" %% "scalatest" % "1.9.1" % "test",
"junit" % "junit" % "4.11" % "test"
)
//resolvers += Resolver.sonatypeRepo("public")
resolvers += "sonatype-public" at "https://oss.sonatype.org/content/groups/public"
//fork in run := true