Remove skipStagingRepositoryClose=true for Sonatype deployments.

Repository closing is blazing fast now.

See #181
This commit is contained in:
Mark Paluch
2021-03-31 08:52:28 +02:00
parent a2104ad972
commit a214956e68

View File

@@ -360,7 +360,7 @@ class MavenBuildSystem implements BuildSystem {
SKIP_TESTS, //
arg("gpg.executable").withValue(gpg.getExecutable()), //
arg("gpg.keyname").withValue(gpg.getKeyname()), //
arg("gpg.password").withValue(gpg.getPassword()), arg("skipStagingRepositoryClose").withValue("true"));
arg("gpg.password").withValue(gpg.getPassword()));
mvn.execute(module.getProject(), arguments);
}