mirror of https://github.com/sbt/sbt.git
Merge pull request #7475 from Tammo0987/fix/usage-of-publisher-interface
Use the publisher interface for publishing as default
This commit is contained in:
commit
ed84b9f7e9
|
|
@ -3665,7 +3665,8 @@ object Classpaths {
|
|||
val conf = config.value
|
||||
val log = streams.value.log
|
||||
val module = ivyModule.value
|
||||
IvyActions.publish(module, conf, log)
|
||||
val publisherInterface = publisher.value
|
||||
publisherInterface.publish(module, conf, log)
|
||||
}
|
||||
}
|
||||
.tag(Tags.Publish, Tags.Network)
|
||||
|
|
|
|||
Loading…
Reference in New Issue