-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
41 lines (35 loc) · 1.08 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
import dependencies._
inThisBuild(List(
organization := "io.liliumergo", // group id
name := "lens", // artifact id
version := "5.0.0",
homepage := Some(url("https://liliumergo.io")),
licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT")),
description := "Super basic NFT debugging tool. ",
scmInfo := Some(
ScmInfo(
url("https://github.com/LiliumErgo/lens"),
"scm:[email protected]:LiliumErgo/lens.git"
)
),
developers := List(
Developer(
"lgd",
"Luca D'Angelo",
url("https://github.com/lucagdangelo")
)
),
libraryDependencies ++=
Ergo ++
GuapSwap ++
Testing
,
resolvers := List(
"Sonatype OSS Releases" at "https://s01.oss.sonatype.org/content/repositories/releases",
"Sonatype OSS Snapshots" at "https://s01.oss.sonatype.org/content/repositories/snapshots"
),
versionScheme := Some ("semver-spec"),
assembly / assemblyJarName := s"${name.value}-${version.value}.jar",
assembly / assemblyOutputPath := file(s"./${name.value}-${version.value}.jar/")
))