-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
21 lines (18 loc) · 909 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
enablePlugins(ScalaNativePlugin)
scalaVersion := "3.1.3"
organization := "com.fiatjaf"
name := "sn-sha256"
version := "0.4.1"
sonatypeProfileName := "com.fiatjaf"
homepage := Some(url("https://github.com/fiatjaf/sn-sha256"))
scmInfo := Some(ScmInfo(url("https://github.com/fiatjaf/sn-sha256"), "[email protected]:fiatjaf/sn-sha256.git"))
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
developers := List(
Developer(id="fiatjaf", name="fiatjaf", email="[email protected]", url=url("https://fiatjaf.com/"))
)
publishMavenStyle := true
publishTo := sonatypePublishToBundle.value
sonatypeCredentialHost := "s01.oss.sonatype.org"
libraryDependencies += "com.lihaoyi" %%% "utest" % "0.7.11" % Test
testFrameworks += new TestFramework("utest.runner.Framework")
nativeLinkStubs := true