-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
49 lines (41 loc) · 1.21 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
42
43
44
45
46
47
48
49
val scala3Version = "3.3.3"
name := "shalter"
version := "0.0.7"
// To make the default compiler and REPL use Dotty
scalaVersion := scala3Version
crossScalaVersions := Seq(scala3Version)
libraryDependencies += ("org.typelevel" %% "cats-core" % "2.10.0")
libraryDependencies += ("org.typelevel" %% "cats-tagless-core" % "0.15.0")
publishMavenStyle := true
scmInfo := Some(
ScmInfo(
url("https://github.com/tofu-tf/shalter"),
"[email protected]:tofu-tf/shalter.git"
)
)
publishTo := {
if (isSnapshot.value) {
Some(Opts.resolver.sonatypeSnapshots)
} else sonatypePublishToBundle.value
}
developers := List(
Developer(
"odomontois",
"Oleg Nizhnik",
url("https://github.com/odomontois")
),
Developer(
"danslapman",
"Daniil Smirnov",
url("https://github.com/danslapman")
)
)
credentials ++= ((Path.userHome / ".sbt" / "odo.credentials") :: Nil)
.filter(_.exists())
.map(Credentials.apply)
pgpSecretRing := Path.userHome / ".gnupg" / "secring.gpg"
organization := "tf.tofu"
organizationName := "Tofu"
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))