Merge pull request #2542 from eed3si9n/wip/ivypath

Add toString to IvyPaths for debugging purpose
This commit is contained in:
eugene yokota 2016-04-06 15:16:10 -04:00
commit c35cb7f54e
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