Skip to content

Bump SBT and MiMa #10

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

Merged
merged 1 commit into from
Feb 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ repository in bintray := "sbt-plugins"
bintrayOrganization in bintray := None

// this plugin depends on the sbt-osgi plugin -- 2-for-1!
// TODO update to 0.8.0
// this might require us to modify the downstream project to enable the AutoPlugin
// See code changes and docs: https://github.com/sbt/sbt-osgi/commit/e3625e685b8d1784938ec66067d629251811a9d1
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.7.0")

addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.6")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.8")
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.1
sbt.version=0.13.9
2 changes: 1 addition & 1 deletion src/main/scala/ScalaModulePlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ object ScalaModulePlugin extends Plugin {
),
credentials ++= {
val file = Path.userHome / ".ivy2" / ".credentials"
if (file.exists) List(file) else Nil
if (file.exists) List(new FileCredentials(file)) else Nil
},

publishMavenStyle := true,
Expand Down