mirror of https://github.com/sbt/sbt.git
Bump to Ivy 2.1.0, don't print stack trace for retrieve exceptions
This commit is contained in:
parent
cbb0f1a0a8
commit
239e9198c7
|
|
@ -16,6 +16,7 @@ object Boot
|
|||
catch
|
||||
{
|
||||
case b: BootException => errorAndExit(b.toString)
|
||||
case r: xsbti.RetrieveException =>errorAndExit("Error: " + r.getMessage)
|
||||
case e =>
|
||||
e.printStackTrace
|
||||
errorAndExit(Pre.prefixError(e.toString))
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class XSbt(info: ProjectInfo) extends ParentProject(info)
|
|||
def compilerInterfaceClasspath = compileInterfaceSub.projectClasspath(Configurations.Test)
|
||||
|
||||
//run in parallel
|
||||
override def parallelExecution = true
|
||||
override def parallelExecution = false
|
||||
|
||||
override def managedStyle = ManagedStyle.Ivy
|
||||
val publishTo = Resolver.file("test-repo", new File("/var/dbwww/repo/"))
|
||||
|
|
@ -117,7 +117,7 @@ class XSbt(info: ProjectInfo) extends ParentProject(info)
|
|||
}
|
||||
class IvyProject(info: ProjectInfo) extends Base(info) with TestWithIO with TestWithLog with TestWithLaunch
|
||||
{
|
||||
val ivy = "org.apache.ivy" % "ivy" % "2.0.0"
|
||||
val ivy = "org.apache.ivy" % "ivy" % "2.1.0"
|
||||
override def deliverProjectDependencies = Set(super.deliverProjectDependencies.toSeq : _*) - launchInterfaceSub.projectID
|
||||
}
|
||||
abstract class BaseInterfaceProject(info: ProjectInfo) extends DefaultProject(info) with ManagedBase with TestWithLog with Component with JavaProject
|
||||
|
|
|
|||
Loading…
Reference in New Issue