-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
41 lines (30 loc) · 1.07 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
name := unrar
version := "0.1"
scalaVersion := "2.12.6"
//lazy val akkaVersion = "2.5.25"
unmanagedBase := baseDirectory.value / "libs"
lazy val unrar = "UnRar"
lazy val scalaSettings = Seq(
scalaVersion := "2.12.6"
)
//lazy val root = Project(id = unrar, base = file("."))
// .dependsOn(unrar_dec_supported)
// .settings(scalaSettings,
// aggregate in update := false
// )
//
//lazy val unrar_dec_supported = project.settings(scalaSettings)
offline := true
resolvers += "jitpack" at "https://jitpack.io"
libraryDependencies ++= Seq(
// "net.lingala.zip4j" % "zip4j" % "[1.3.2,)",
// "com.github.junrar" % "junrar" % "[4.0.0,)",
"com.github.dedge-space" % "bitcoinj" % "33b5d94bfc",
"com.github.dedge-space" % "annoguard" % "1.0.3-beta",
"com.github.dedge-space" % "scala-lang" % "cc6be80562",
"com.github.dedge-space" % "reflow" % "a2d3ecea44",
"com.squareup.okhttp3" % "okhttp" % "[3.11.0,)",
// "com.typesafe.akka" %% "akka-actor" % akkaVersion,
// "com.typesafe.akka" %% "akka-testkit" % akkaVersion,
"org.scalatest" %% "scalatest" % "3.0.5" % "test"
)