-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
56 lines (31 loc) · 1.23 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name := "goseumdochi-root"
organization := Common.organization
version := Common.version
isSnapshot := true
scalaVersion := Common.scalaVersion
scalacOptions := Common.scalacOptions
classpathTypes += "maven-plugin"
autoCompilerPlugins := true
parallelExecution in Test := false
fork := true
javaOptions += Common.javaOptions
lazy val base = project
lazy val `desktop-sphero` = project.
dependsOn(base % "compile->compile;test->test")
lazy val root = (project in file(".")).
aggregate(base, `desktop-sphero`).
dependsOn(`desktop-sphero`)
lazy val android = project.dependsOn(base)
lazy val watchdog = project.enablePlugins(AndroidApp).dependsOn(android)
lazy val leash = project.enablePlugins(AndroidApp).dependsOn(android)
mainClass in Compile := Some("org.goseumdochi.ConsoleMain")
resolvers ++= Common.resolvers
libraryDependencies ++= Seq(
"org.scalafx" %% "scalafx" % "8.0.60-R9"
)
libraryDependencies ++= Common.javacvDeps
libraryDependencies ++= Common.javacvPlatformDeps("runtime")
libraryDependencies ++= Common.ffmpegPlatformDeps("runtime")
maxErrors := Common.maxErrors
traceLevel := Common.traceLevel
publishTo := Some(Resolver.file("file", new File(Path.userHome.absolutePath+"/.ivy2/local/org.goseumdochi")))