Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandru committed May 10, 2022
1 parent 0072aa7 commit 6c951ee
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,6 @@ lazy val sharedSettings = Seq(
Test / logBuffered := false,
IntegrationTest / logBuffered := false,

// https://github.com/lightbend/mima/pull/289
ThisBuild / mimaFailOnNoPrevious := false,

// ---------------------------------------------------------------------------
// Options meant for publishing on Maven Central

Expand Down Expand Up @@ -193,6 +190,10 @@ def defaultCrossProjectConfiguration(
}
},
)
val sharedJVMSettings = Seq(
// https://github.com/lightbend/mima/pull/289
ThisBuild / mimaFailOnNoPrevious := false,
)
val cross = pr
.configure(defaultPlugins)
.settings(sharedSettings)
Expand All @@ -206,7 +207,7 @@ def defaultCrossProjectConfiguration(
case JSPlatform =>
acc.jsSettings(sharedJavascriptSettings)
case _ =>
acc
acc.jvmSettings(sharedJVMSettings)
}
}
}
Expand Down

0 comments on commit 6c951ee

Please sign in to comment.