forked from tinylabproductions/tlp-deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
52 lines (35 loc) · 1.39 KB
/
build.sbt
File metadata and controls
52 lines (35 loc) · 1.39 KB
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
name := "tlp-deployer"
organization := "com.tinylabproductions"
version := "1.9.1"
scalaVersion := "2.12.3"
resolvers += Resolver.jcenterRepo
val JschAgentProxyVer = "0.0.9"
val BouncyCastleVer = "1.54"
val SevenZipVer = "9.20-2.00beta"
libraryDependencies ++= Seq(
// Logging
"org.slf4j" % "slf4j-simple" % "1.7.21",
// Scala-friendly companion to Typesafe config
"com.iheart" %% "ficus" % "1.4.0",
// SSH and friends
"com.hierynomus" % "sshj" % "0.19.0",
"com.jcraft" % "jsch.agentproxy.connector-factory" % JschAgentProxyVer,
"com.jcraft" % "jsch.agentproxy.sshj" % JschAgentProxyVer exclude("net.schmizz", "sshj"),
"com.jcraft" % "jsch.agentproxy.pageant" % JschAgentProxyVer,
"com.jcraft" % "jsch.agentproxy.sshagent" % JschAgentProxyVer,
// Terminal handling
"org.fusesource.jansi" % "jansi" % "1.16",
// Cryptography libraries
"org.bouncycastle" % "bcprov-jdk15on" % BouncyCastleVer,
"org.bouncycastle" % "bcpkix-jdk15on" % BouncyCastleVer,
// 7zip
"net.sf.sevenzipjbinding" % "sevenzipjbinding" % SevenZipVer,
"net.sf.sevenzipjbinding" % "sevenzipjbinding-all-platforms" % SevenZipVer,
// Functional programming
"com.softwaremill.quicklens" %% "quicklens" % "1.4.8",
// Command line arguments parsing
"com.github.scopt" %% "scopt" % "3.5.0"
)
// Otherwise chalk dies when it cannot initialize console
fork in run := true
enablePlugins(JavaAppPackaging)