Skip to content

Commit

Permalink
sbt 1.5 (was 1.4)
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue committed Mar 22, 2021
1 parent 61bc175 commit 96ab4b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Expand Up @@ -29,7 +29,7 @@ val root = project.in(file(".")).settings(
name := "mima",
crossScalaVersions := Nil,
mimaFailOnNoPrevious := false,
skip in publish := true,
publish / skip := true,
)
aggregateProjects(core, sbtplugin, functionalTests)

Expand All @@ -56,7 +56,7 @@ val core = project.settings(
val sbtplugin = project.enablePlugins(SbtPlugin).dependsOn(core).settings(
name := "sbt-mima-plugin",
// drop the previous value to drop running Test/compile
scriptedDependencies := Def.task(()).dependsOn(publishLocal, publishLocal in core).value,
scriptedDependencies := Def.task(()).dependsOn(publishLocal, core / publishLocal).value,
scriptedLaunchOpts += s"-Dplugin.version=${version.value}",
scriptedLaunchOpts += s"-Dsbt.boot.directory=${file(sys.props("user.home")) / ".sbt" / "boot"}",
MimaSettings.mimaSettings,
Expand All @@ -80,5 +80,5 @@ val functionalTests = Project("functional-tests", file("functional-tests"))
Test / mainClass := Some("com.typesafe.tools.mima.lib.UnitTests"),
IntegrationTest / mainClass := Some("com.typesafe.tools.mima.lib.IntegrationTests"),
mimaFailOnNoPrevious := false,
skip in publish := true,
publish / skip := true,
)
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=1.4.8
sbt.version=1.5.0-RC2

0 comments on commit 96ab4b0

Please sign in to comment.