-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
32 lines (26 loc) · 816 Bytes
/
build.sbt
File metadata and controls
32 lines (26 loc) · 816 Bytes
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
import ReleaseTransformations.*
import sbtversionpolicy.withsbtrelease.ReleaseVersion
organization := "com.gu"
name := "dynamo-db-switches"
licenses := Seq(License.Apache2)
scalaVersion := "2.13.14"
scalacOptions ++= Seq("-release:11")
crossScalaVersions := Seq(scalaVersion.value, "2.12.19")
releaseVersion := ReleaseVersion.fromAggregatedAssessedCompatibilityWithLatestRelease().value
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
setNextVersion,
commitNextVersion
)
libraryDependencies ++= Seq(
"software.amazon.awssdk" % "dynamodb" % "2.33.9",
"org.clapper" %% "grizzled-slf4j" % "1.3.4",
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test
)
Compile / doc / sources := List()