-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
38 lines (30 loc) · 1.28 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
name := "chaincash"
version := "0.2.1"
organization := "org.ergoplatform"
scalaVersion := "2.12.17"
unmanagedClasspath in Compile += baseDirectory.value / "contracts"
resolvers ++= Seq(
"Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/",
"Bintray" at "https://jcenter.bintray.com/", //for org.ethereum % leveldbjni-all
"SonaType" at "https://oss.sonatype.org/content/groups/public",
"Typesafe maven releases" at "https://dl.bintray.com/typesafe/maven-releases/",
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/",
"Nexus Releases" at "https://s01.oss.sonatype.org/content/repositories/releases",
"Nexus Snapshots" at "https://s01.oss.sonatype.org/content/repositories/snapshots"
)
libraryDependencies ++= Seq(
"io.github.k-singh" %% "plasma-toolkit" % "1.0.2",
"com.squareup.okhttp3" % "mockwebserver" % "3.14.9",
"org.scalatest" %% "scalatest" % "3.0.8" ,
"org.scalacheck" %% "scalacheck" % "1.14.+"
)
val circeVersion = "0.12.3"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)
libraryDependencies ++= Seq(
"org.scalaj" %% "scalaj-http" % "2.3.0"
)
dependencyOverrides += "org.ergoplatform" % "ergo-appkit" % "5.0.3"