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

Commit

Permalink
bump Ivy, Scala versions
Browse files Browse the repository at this point in the history
  • Loading branch information
harrah committed Oct 9, 2010
1 parent c0e47db commit 32bfb21
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion launch/src/main/resources/sbt/sbt.boot.properties
Expand Up @@ -33,7 +33,7 @@
project.name: quick=set(test), new=prompt(Name), fill=prompt(Name)
project.organization: new=prompt(Organization)
project.version: quick=set(1.0), new=prompt(Version)[1.0], fill=prompt(Version)[1.0]
build.scala.versions: quick=set(2.7.7), new=prompt(Scala version)[2.7.7], fill=prompt(Scala version)[2.7.7]
build.scala.versions: quick=set(2.8.0), new=prompt(Scala version)[2.8.0], fill=prompt(Scala version)[2.8.0]
sbt.version: quick=set(0.7.4), new=prompt(sbt version)[0.7.4], fill=prompt(sbt version)[0.7.4]
project.scratch: quick=set(true)
project.initialize: quick=set(true), new=set(true)
Expand Down
2 changes: 1 addition & 1 deletion project/build/SbtProject.scala
Expand Up @@ -39,7 +39,7 @@ abstract class SbtProject(info: ProjectInfo) extends DefaultProject(info) with t
//testing
val scalacheck = "org.scala-tools.testing" %% "scalacheck" % "1.6" % "test"

val ivy = "org.apache.ivy" % "ivy" % "2.1.0" intransitive()
val ivy = "org.apache.ivy" % "ivy" % "2.2.0" intransitive()
val jsch = "com.jcraft" % "jsch" % "0.1.31" intransitive()
val jetty = "org.mortbay.jetty" % "jetty" % "6.1.14" % "optional"
val jettyplus = "org.mortbay.jetty" % "jetty-plus" % "6.1.14" % "optional"
Expand Down
7 changes: 4 additions & 3 deletions project/build/XSbt.scala
Expand Up @@ -62,7 +62,7 @@ class XSbt(info: ProjectInfo) extends ParentProject(info) with NoCrossPaths
class LaunchProject(info: ProjectInfo) extends Base(info) with TestWithIO with TestDependencies with ProguardLaunch with NoCrossPaths
{
val jline = jlineDep
val ivy = "org.apache.ivy" % "ivy" % "2.1.0"
val ivy = "org.apache.ivy" % "ivy" % "2.2.0"
override def deliverProjectDependencies = Nil

// defines the package that proguard operates on
Expand Down Expand Up @@ -120,7 +120,7 @@ class XSbt(info: ProjectInfo) extends ParentProject(info) with NoCrossPaths
}
class IvyProject(info: ProjectInfo) extends Base(info) with TestWithIO with TestWithLog with TestWithLaunch
{
val ivy = "org.apache.ivy" % "ivy" % "2.1.0"
val ivy = "org.apache.ivy" % "ivy" % "2.2.0"
}
abstract class BaseInterfaceProject(info: ProjectInfo) extends DefaultProject(info) with ManagedBase with TestWithLog with Component with JavaProject
class InterfaceProject(info: ProjectInfo) extends BaseInterfaceProject(info)
Expand Down Expand Up @@ -193,7 +193,8 @@ class XSbt(info: ProjectInfo) extends ParentProject(info) with NoCrossPaths

// sub projects for each version of Scala to precompile against other than the one sbt is built against
// each sub project here will add ~100k to the download
lazy val precompiled28 = precompiledSub("2.8.0.RC2")
lazy val precompiled280 = precompiledSub("2.8.0")
lazy val precompiled281 = precompiledSub("2.8.1.RC2")

def precompiledSub(v: String) =
project(info.projectPath, "Precompiled " + v, new Precompiled(v)(_), cip.info.dependencies.toSeq : _* /*doesn't include subprojects of cip*/ )
Expand Down

0 comments on commit 32bfb21

Please sign in to comment.