Skip to content

Commit

Permalink
Bump sbt to 1.5.5 (close #46)
Browse files Browse the repository at this point in the history
  • Loading branch information
spenes committed Aug 13, 2021
1 parent 1762fe4 commit 3fed461
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions project/BuildSettings.scala
Expand Up @@ -36,7 +36,7 @@ object BuildSettings {
crossScalaVersions := Seq(scala212, scala213),
description := "Loading Snowplow enriched data into PostgreSQL in real-time",
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0.html")),
parallelExecution in Test := false
Test / parallelExecution := false
)

lazy val buildInfoSettings = Seq(
Expand All @@ -46,19 +46,19 @@ object BuildSettings {

/** Docker image settings */
lazy val dockerSettings = Seq(
maintainer in Docker := "Snowplow Analytics Ltd. <support@snowplowanalytics.com>",
Docker / maintainer := "Snowplow Analytics Ltd. <support@snowplowanalytics.com>",
dockerBaseImage := "adoptopenjdk:11-jre-hotspot-focal",
daemonUser in Docker := "daemon",
Docker / daemonUser := "daemon",
dockerUpdateLatest := true,
dockerRepository := Some("snowplow"),

daemonUserUid in Docker := None,
defaultLinuxInstallLocation in Docker := "/opt/snowplow",
Docker / daemonUserUid := None,
Docker / defaultLinuxInstallLocation := "/opt/snowplow",
)

lazy val mavenSettings = Seq(
publishArtifact := true,
publishArtifact in Test := false,
Test / publishArtifact := false,
pomIncludeRepository := { _ => false },
homepage := Some(url("http://snowplowanalytics.com")),
developers := List(
Expand All @@ -80,13 +80,13 @@ object BuildSettings {
coverageMinimum := 50,
coverageFailOnMinimum := false,
coverageExcludedPackages := "^target/.*",
(test in Test) := {
(coverageReport dependsOn (test in Test)).value
(Test / test) := {
(coverageReport dependsOn (Test / test)).value
}
)

lazy val addExampleConfToTestCp = Seq(
unmanagedClasspath in Test += {
Test / unmanagedClasspath += {
baseDirectory.value.getParentFile.getParentFile / "config"
}
)
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=1.3.13
sbt.version=1.5.5

0 comments on commit 3fed461

Please sign in to comment.