-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
30 lines (27 loc) · 826 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
val commonSettings = Seq(
scalaVersion := "2.12.5"
)
val root = project in file(".")
val rpnCore = (project in file("rpn"))
.settings(
commonSettings,
name := "rpn-core",
version := "0.0.1",
organization := "com.github.veinhorn",
crossScalaVersions := Seq("2.11.12", "2.12.5"),
libraryDependencies ++= Seq(
"org.scalactic" %% "scalactic" % "3.0.5" % Test,
"org.scalatest" %% "scalatest" % "3.0.5" % Test
),
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
)
val rpnRepl = (project in file("rpn-repl"))
.settings(
name := "rpn-repl",
scalaVersion := "2.11.12",
resolvers += Resolver.bintrayRepo("veinhorn", "maven"),
libraryDependencies ++= Seq(
"com.github.veinhorn" %% "rpn-core" % "0.0.1"
)
)
.enablePlugins(ConscriptPlugin)