Skip to content

Commit

Permalink
bump up dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pocorall committed Oct 29, 2014
1 parent c755ee1 commit d1ac185
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@ android.Plugin.androidBuild

name := "hello-scaloid-sbt"

scalaVersion := "2.11.2"
scalaVersion := "2.11.3"

proguardCache in Android ++= Seq(
ProguardCache("org.scaloid") % "org.scaloid"
)

proguardOptions in Android ++= Seq("-dontobfuscate", "-dontoptimize", "-dontwarn scala.collection.mutable.**")
proguardOptions in Android ++= Seq("-dontobfuscate", "-dontoptimize", "-keepattributes Signature"
, "-dontwarn scala.collection.**" // required from Scala 2.11.3
, "-dontwarn scala.collection.mutable.**" // required from Scala 2.11.0
)

libraryDependencies += "org.scaloid" %% "scaloid" % "3.5-10" withSources() withJavadoc()
libraryDependencies += "org.scaloid" %% "scaloid" % "3.6-10" withSources() withJavadoc()

scalacOptions in Compile += "-feature"

Expand Down
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.5
sbt.version=0.13.6
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.hanhuy.sbt" % "android-sdk-plugin" % "1.3.5")
addSbtPlugin("com.hanhuy.sbt" % "android-sdk-plugin" % "1.3.6")

addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.4.0")

Expand Down

0 comments on commit d1ac185

Please sign in to comment.