Add toString to IvyPaths for debugging purpose

This commit is contained in:
Eugene Yokota 2016-04-06 12:29:37 -04:00
parent bc70ec0492
commit e065df9610
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ import scala.xml.NodeSeq
final class IvyPaths(val baseDirectory: File, val ivyHome: Option[File]) {
def withBase(newBaseDirectory: File) = new IvyPaths(newBaseDirectory, ivyHome)
override def toString: String = s"IvyPath($baseDirectory, $ivyHome)"
}
sealed trait IvyConfiguration {
type This <: IvyConfiguration