-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
37 lines (32 loc) · 1.13 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
inThisBuild(List(
organization := "org.guapswap", // groupId
name := "guapswaplib-scala", // artifactId
homepage := Some(url("https://guapswap.org")),
licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT")),
description := "GuapSwapLib library written in Scala.",
scmInfo := Some(
ScmInfo(
url("https://github.com/GuapSwap/guapswaplib-scala"),
"scm:[email protected]:GuapSwap/guapswaplib-scala.git"
)
),
developers := List(
Developer(
"lgd",
"Luca D'Angelo",
url("https://github.com/lucagdangelo")
)
),
sonatypeCredentialHost := "s01.oss.sonatype.org",
sonatypeRepository := "https://s01.oss.sonatype.org/service/local",
scalaVersion := "2.12.15",
libraryDependencies ++= Seq(
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.ergoplatform" %% "ergo-appkit" % "4.0.9",
"com.google.code.gson" % "gson" % "2.8.5",
),
versionScheme := Some("semver-spec"),
assembly / assemblyJarName := s"${name.value}-${version.value}.jar",
assembly / assemblyOutputPath := file(s"./${name.value}-${version.value}.jar/")
))