use of org.apache.maven.wagon.Wagon in project sonatype-aether by sonatype.
the class WagonRepositoryConnector method close.
public void close() {
closed = true;
for (Wagon wagon = wagons.poll(); wagon != null; wagon = wagons.poll()) {
disconnectWagon(wagon);
releaseWagon(wagon);
}
shutdown(executor);
}
Aggregations