Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sbt 1.5 (was 1.4) #608

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.9
sbt.version=1.5.0-RC2