File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ repository in bintray := "sbt-plugins"
29
29
bintrayOrganization in bintray := None
30
30
31
31
// this plugin depends on the sbt-osgi plugin -- 2-for-1!
32
+ // TODO update to 0.8.0
33
+ // this might require us to modify the downstream project to enable the AutoPlugin
34
+ // See code changes and docs: https://github.com/sbt/sbt-osgi/commit/e3625e685b8d1784938ec66067d629251811a9d1
32
35
addSbtPlugin(" com.typesafe.sbt" % " sbt-osgi" % " 0.7.0" )
33
36
34
- addSbtPlugin(" com.typesafe" % " sbt-mima-plugin" % " 0.1.6 " )
37
+ addSbtPlugin(" com.typesafe" % " sbt-mima-plugin" % " 0.1.8 " )
Original file line number Diff line number Diff line change 1
- sbt.version =0.13.1
1
+ sbt.version =0.13.9
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ object ScalaModulePlugin extends Plugin {
60
60
),
61
61
credentials ++= {
62
62
val file = Path .userHome / " .ivy2" / " .credentials"
63
- if (file.exists) List (file) else Nil
63
+ if (file.exists) List (new FileCredentials ( file) ) else Nil
64
64
},
65
65
66
66
publishMavenStyle := true ,
You can’t perform that action at this time.
0 commit comments