forked from mauriciojost/olympus-photosync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
46 lines (30 loc) · 1.17 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
enablePlugins(WindowsPlugin, UniversalPlugin, JavaAppPackaging)
rpmRelease := "1"
rpmVendor := "mauritania"
rpmUrl := Some("https://github.com/mauriciojost/olympus-photosync")
rpmLicense := Some("Apache License Version 2.0")
name := "olympus-photosync"
scalaVersion := "2.12.7"
mainClass in Compile := Some("org.mauritania.photosync.starter.Starter")
maintainer := "Mauricio Jost <[email protected]>"
packageSummary := "Synchronize media from Olympus cameras to your PC wirelessly."
coverageMinimum := 90
coverageFailOnMinimum := true
parallelExecution in Test := false
resolvers ++= Seq(
"Bintray repository" at "https://dl.bintray.com/scalaz-releases/"
)
libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "1.7.5",
"org.slf4j" % "slf4j-log4j12" % "1.7.5",
"com.typesafe" % "config" % "1.2.1",
"com.github.scopt" %% "scopt" % "3.7.0",
"org.scalafx" %% "scalafx" % "8.0.144-R12",
"com.lihaoyi" %% "scalarx" % "0.3.2"
)
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"org.specs2" %% "specs2-core" % "3.8.9" % "test",
"org.specs2" %% "specs2-mock" % "3.8.9" % "test",
"commons-io" % "commons-io" % "2.5" % "test"
)