diff --git a/build.sbt b/build.sbt index c05e08f..4135791 100644 --- a/build.sbt +++ b/build.sbt @@ -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") diff --git a/project/build.properties b/project/build.properties index 37b489c..817bc38 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=0.13.1 +sbt.version=0.13.9 diff --git a/src/main/scala/ScalaModulePlugin.scala b/src/main/scala/ScalaModulePlugin.scala index afcfc89..0220ebc 100644 --- a/src/main/scala/ScalaModulePlugin.scala +++ b/src/main/scala/ScalaModulePlugin.scala @@ -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,