forked from ovotech/ciris-aws-secretsmanager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
59 lines (49 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
59
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
name := "ciris-aws-secretsmanager"
organization := "io.github.keirlawson"
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
scalaVersion := "3.3.1"
crossScalaVersions := Seq(scalaVersion.value, "2.13.12", "2.12.18")
releaseCrossBuild := true
libraryDependencies ++= Seq(
"is.cir" %% "ciris" % "3.5.0",
"org.typelevel" %% "cats-core" % "2.10.0",
"org.typelevel" %% "cats-effect" % "3.5.2",
"software.amazon.awssdk" % "secretsmanager" % "2.23.14",
"org.typelevel" %% "munit-cats-effect-3" % "1.0.7" % Test
)
publishTo := sonatypePublishToBundle.value
testFrameworks += new TestFramework("munit.Framework")
sonatypeProfileName := "io.github.keirlawson"
publishMavenStyle := true
homepage := Some(url("https://github.com/keirlawson/ciris-aws-secretsmanager"))
scmInfo := Some(
ScmInfo(
url("https://github.com/keirlawson/ciris-aws-secretsmanager"),
"scm:[email protected]:keirlawson/ciris-aws-secretsmanager.git"
)
)
developers := List(
Developer(
id = "keirlawson",
name = "Keir Lawson",
email = "[email protected]",
url = url("https://github.com/keirlawson/")
)
)
import ReleaseTransformations._
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
releaseStepCommandAndRemaining("+publishSigned"),
releaseStepCommand("sonatypeBundleRelease"),
setNextVersion,
commitNextVersion,
pushChanges
)
Compile / doc / sources := Nil