-
Notifications
You must be signed in to change notification settings - Fork 64
/
build.sbt
61 lines (40 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name := "BlockchainDLib"
version := "1.0"
scalaVersion := "2.12.1"
resolvers += Resolver.mavenLocal
resolvers ++= Seq(
Resolver.sonatypeRepo("releases"),
Resolver.sonatypeRepo("snapshots")
)
libraryDependencies += "net.liftweb" %% "lift-json" % "3.0.1"
libraryDependencies += "net.ruippeixotog" %% "scala-scraper" % "2.0.0"
libraryDependencies += "org.web3j" % "core" % "3.2.0"
libraryDependencies += "org.scalaj" %% "scalaj-http" % "2.3.0"
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.1"
libraryDependencies += "com.github.briandilley.jsonrpc4j" % "jsonrpc4j" % "1.1"
libraryDependencies += "org.bitcoinj" % "bitcoinj-core" % "0.14.5"
// https://mvnrepository.com/artifact/com.github.briandilley.jsonrpc4j/jsonrpc4j
libraryDependencies += "com.github.briandilley.jsonrpc4j" % "jsonrpc4j" % "1.1"
libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "2.9.0"
// https://mvnrepository.com/artifact/org.mongodb/mongo-java-driver
libraryDependencies += "org.mongodb" % "mongodb-driver-legacy" % "3.12.2"
//libraryDependencies += "org.mongodb.scala" %% "mongo-scala-bson" % "2.1.0"
libraryDependencies += "org.apache.tika" % "tika-server" % "1.5"
libraryDependencies += "com.j256.simplemagic" % "simplemagic" % "1.1"
libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.5"
// https://mvnrepository.com/artifact/com.codesnippets4all/quick-json
libraryDependencies += "com.codesnippets4all" % "quick-json" % "1.0.4"
libraryDependencies += "org.slf4j" % "slf4j-simple" % "1.6.4"
libraryDependencies ++= Seq(
"org.scalikejdbc" %% "scalikejdbc" % "3.5.0",
"com.h2database" % "h2" % "1.4.200",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"mysql" % "mysql-connector-java" % "8.0.11",
"org.postgresql" % "postgresql" % "42.2.0",
"com.zaxxer" % "HikariCP" % "2.7.1"
)
libraryDependencies += "com.chuusai" %% "shapeless" % "2.3.2"
libraryDependencies += "org.apache.jena" % "apache-jena-libs" % "3.7.0"
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.6.7"
//libraryDependencies += "org.litecoinj" % "litecoinj-core" % "0.15-SNAPSHOT"
libraryDependencies += "com.github.tototoshi" %% "scala-csv" % "1.3.5"