mirror of https://github.com/sbt/sbt.git
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:
parent
6c5d398608
commit
c6ea7ccd67
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue