Skip to content

Commit

Permalink
Update to 0.2 and use latest robolectric, specs2 and mockito
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrechtel committed May 5, 2012
1 parent 2cadfeb commit 659cb81
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ organization := "com.github.jbrechtel"

name := "robospecs"

version := "0.2-SNAPSHOT"
version := "0.2"

resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"

libraryDependencies ++= Seq(
"com.pivotallabs" % "robolectric" % "1.0-RC4",
"org.specs2" %% "specs2" % "1.6.1",
"org.mockito" % "mockito-core" % "1.9.0-rc1"
"com.pivotallabs" % "robolectric" % "1.1",
"org.specs2" %% "specs2" % "1.9",
"org.mockito" % "mockito-core" % "1.9.0"
)

javaSource in Test <<= (sourceDirectory in Test)(_ / "emptyAndroidProject" / "src" / "java")

publishTo := Some(Resolver.file("file", new File( "../jbrechtel.github.com/repo/releases" )) )

0 comments on commit 659cb81

Please sign in to comment.