-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
31 lines (26 loc) · 1.24 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
ThisBuild / scalaVersion := "2.13.10"
ThisBuild / organization := "com.47deg"
publish / skip := true
addCommandAlias("ci-test", "scalafmtCheckAll; scalafmtSbtCheck; mdoc; test")
addCommandAlias("ci-docs", "github; mdoc; headerCreateAll")
addCommandAlias("ci-publish", "github; ci-release")
val testKitVersion = "0.9.9"
lazy val `documentation` = project
.dependsOn(`docker-testkit-munit`)
.enablePlugins(MdocPlugin)
.settings(mdocOut := file("."))
.settings(publish / skip := true)
lazy val `docker-testkit-munit` = project
.settings(
testFrameworks += new TestFramework("munit.Framework"),
Test / fork := true,
libraryDependencies ++= Seq(
"org.scalameta" %% "munit" % "[0.2.0,)" % Provided, // scala-steward:off
"com.whisk" %% "docker-testkit-core" % testKitVersion % Provided,
"com.whisk" %% "docker-testkit-impl-spotify" % testKitVersion % Test,
"com.whisk" %% "docker-testkit-impl-docker-java" % testKitVersion % Test,
"com.whisk" %% "docker-testkit-samples" % testKitVersion % Test,
"ch.qos.logback" % "logback-classic" % "1.4.6" % Test,
"org.postgresql" % "postgresql" % "42.6.0" % Test
)
)