Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
Bump scala-io to 0.4.0 and add resolvers
Browse files Browse the repository at this point in the history
  • Loading branch information
sihil committed Nov 13, 2012
1 parent 6464967 commit b45c050
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions management-internal/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ resolvers ++= Seq(Classpaths.typesafeResolver, ScalaToolsReleases)

libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "1.5" % "test",
"com.github.scala-incubator.io" %% "scala-io-core" % "0.2.0",
"com.github.scala-incubator.io" %% "scala-io-file" % "0.2.0"
"com.github.scala-incubator.io" %% "scala-io-core" % "0.4.0",
"com.github.scala-incubator.io" %% "scala-io-file" % "0.4.0"
)

// disable publishing the main javadoc jar
Expand Down
4 changes: 3 additions & 1 deletion management/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ libraryDependencies <<= (scalaVersion, libraryDependencies) { (sv, deps) =>
deps :+ ( sv match {
case "2.8.1" => "com.github.scala-incubator.io" %% "core" % "0.1.1"
case "2.9.0-1" => "com.github.scala-incubator.io" %% "core" % "0.1.2"
case "2.9.1" => "com.github.scala-incubator.io" %% "scala-io-core" % "0.2.0"
case "2.9.1" => "com.github.scala-incubator.io" %% "scala-io-core" % "0.4.0"
} )
}

// needed for specs2
resolvers += ScalaToolsSnapshots

resolvers += "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"

// disable publishing the main javadoc jar
publishArtifact in (Compile, packageDoc) := false

Expand Down

0 comments on commit b45c050

Please sign in to comment.