-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathbuild.sbt
More file actions
23 lines (16 loc) · 720 Bytes
/
Copy pathbuild.sbt
File metadata and controls
23 lines (16 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
enablePlugins(OssLibPlugin)
scalaVersion := tnm.ScalaVersion.prev
name := "docile-charge-point"
organization := "de.reinier"
mainClass := Some("chargepoint.docile.Main")
assemblyJarName in assembly := "docile.jar"
connectInput in run := true
libraryDependencies ++= Seq(
"biz.enef" %% "slogging" % "0.6.0",
"com.lihaoyi" % "ammonite" % "1.0.3" cross CrossVersion.full,
"com.thenewmotion.ocpp" %% "ocpp-j-api" % "6.0.3",
"org.rogach" %% "scallop" % "3.1.1",
"org.scala-lang" % "scala-compiler" % "2.11.11",
"org.slf4j" % "slf4j-nop" % "1.7.25",
"org.specs2" %% "specs2-core" % "4.0.2" % "test"
)