forked from mkeskells/TopGun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
29 lines (26 loc) · 834 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
scalaVersion := "2.13.1"
name := "TopGun"
organization := "NA"
version := "0.1"
lazy val cmdLine = (project in file("cmdLine")).
settings(
inThisBuild(List(
organization := "NA",
scalaVersion := "2.13.1"
)),
name := "TopGun-cmdline",
libraryDependencies += "args4j" % "args4j" % "2.33",
libraryDependencies += "org.ow2.asm" % "asm" % "9.0",
libraryDependencies += "org.ow2.asm" % "asm-tree" % "9.0",
libraryDependencies += "junit" % "junit" % "4.13" % Test,
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % Test
).dependsOn(core)
lazy val core = (project in file("core")).
settings(
inThisBuild(List(
organization := "NA",
scalaVersion := "2.13.1"
)),
name := "TopGun-core",
libraryDependencies += "junit" % "junit" % "4.13" % Test
)