Make IvyXml.makeIvyXmlBefore private[sbt]

The publishLocalBin doesn't make an ivy.xml file. In order to add that
functionality, we need to make IvyXml.makeIvyXmlBefore available at the
private[sbt] level.
This commit is contained in:
Ethan Atkins 2020-01-13 12:51:22 -08:00
parent 622c623740
commit 5c55393f1b
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ object IvyXml {
</ivy-module> </ivy-module>
} }
private def makeIvyXmlBefore[T]( private[sbt] def makeIvyXmlBefore[T](
task: TaskKey[T], task: TaskKey[T],
shadedConfigOpt: Option[Configuration] shadedConfigOpt: Option[Configuration]
): Setting[Task[T]] = ): Setting[Task[T]] =