Remove unneeded validation. It would be really nice

if sbt allowed to show all paths in a DAG between 2 given vertices.
This commit is contained in:
Eugene Vigdorchik 2012-02-10 13:26:06 +04:00
parent 6c5d398608
commit c6ea7ccd67
1 changed files with 1 additions and 1 deletions

View File

@ -772,7 +772,7 @@ object Classpaths
validateResolvers <<= (fullResolvers, otherResolvers, streams) map { case (full, other, s) =>
warnResolversConflict(full ++: other, s.log)
},
publishConfiguration <<= (packagedArtifacts, publishTo, publishMavenStyle, deliver, checksums in publish, ivyLoggingLevel, validateResolvers) map { (arts, publishTo, mavenStyle, ivyFile, checks, level, v) =>
publishConfiguration <<= (packagedArtifacts, publishTo, publishMavenStyle, deliver, checksums in publish, ivyLoggingLevel) map { (arts, publishTo, mavenStyle, ivyFile, checks, level) =>
publishConfig(arts, if(mavenStyle) None else Some(ivyFile), resolverName = getPublishTo(publishTo).name, checksums = checks, logging = level)
},
publishLocalConfiguration <<= (packagedArtifacts, deliverLocal, checksums in publishLocal, ivyLoggingLevel) map {