forked from GuapSwap/guapswap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
24 lines (18 loc) · 658 Bytes
/
build.sbt
File metadata and controls
24 lines (18 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
lazy val root = project
.in(file("."))
.settings(
name := "guapswap",
version := "1.0.1-beta",
scalaVersion := "2.12.15",
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.9" % Test,
"org.ergoplatform" %% "ergo-appkit" % "4.0.7",
"com.google.code.gson" % "gson" % "2.8.5",
"com.monovore" %% "decline-effect" % "2.2.0"
),
libraryDependencySchemes ++= Seq(
"org.typelevel" %% "cats-kernel" % VersionScheme.Always
),
assembly / assemblyJarName := s"${name.value}-${version.value}.jar",
assembly / assemblyOutputPath := file(s"./${name.value}-${version.value}.jar/")
)