-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
37 lines (32 loc) · 972 Bytes
/
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
name := "sbt-testdocker"
description := "Support for running a Docker container during your tests"
organization := "com.lifeway"
scalaVersion := "2.12.16"
lazy val root = (project in file("."))
.enablePlugins(SbtPlugin)
.settings(
moduleName := "sbt-testdocker",
pluginCrossBuild / sbtVersion := {
scalaBinaryVersion.value match {
case "2.12" => "1.2.8" // set minimum sbt version
}
}
)
homepage := Some(url(s"https://github.com/Lifeway/sbt-testdocker"))
inThisBuild(
List(
organization := "com.lifeway",
homepage := Some(url(s"https://github.com/Lifeway/sbt-testdocker")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer(
"rmmeans",
"Ryan Means",
url("https://www.lifeway.com")
)
)
)
)
Test / publishArtifact := false
Test / logBuffered := false