Skip to content

Commit

Permalink
Do not fail when coverage minimum is not reached
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Dumas committed Feb 15, 2024
1 parent 8a1431b commit 2180770
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -724,20 +724,20 @@ lazy val delta = project
lazy val ship = project
.in(file("ship"))
.settings(
name := "nexus-ship",
moduleName := "nexus-ship",
coverageFailOnMinimum := false
name := "nexus-ship",
moduleName := "nexus-ship"
)
.enablePlugins(UniversalPlugin, JavaAppPackaging, JavaAgent, DockerPlugin, BuildInfoPlugin)
.settings(shared, compilation, servicePackaging, assertJavaVersion, kamonSettings, coverage, release)
.dependsOn(sdk % "compile->compile;test->test", testkit % "test->compile")
.settings(
libraryDependencies ++= Seq(declineEffect),
libraryDependencies ++= Seq(declineEffect),
addCompilerPlugin(betterMonadicFor),
run / fork := true,
buildInfoKeys := Seq[BuildInfoKey](version),
buildInfoPackage := "ch.epfl.bluebrain.nexus.delta.ship",
Docker / packageName := "nexus-ship"
run / fork := true,
buildInfoKeys := Seq[BuildInfoKey](version),
buildInfoPackage := "ch.epfl.bluebrain.nexus.delta.ship",
Docker / packageName := "nexus-ship",
coverageFailOnMinimum := false
)

lazy val cargo = taskKey[(File, String)]("Run Cargo to build 'nexus-fixer'")
Expand Down

0 comments on commit 2180770

Please sign in to comment.