Hi, in the new Maven pom we have a wrong scm XML tag: It looks like:
<scm> <connection>scm:git:git://git.apache.org/zookeeper.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/zookeeper.git</developerConnection> <url>https://gitbox.apache.org/repos/asf/zookeeper.git</url> </scm> It should be: <scm> <connection>scm:git:https://gitbox.apache.org/repos/asf/zookeeper.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/zookeeper.git</developerConnection> <url>https://gitbox.apache.org/repos/asf/zookeeper.git</url> </scm> or maybe: <scm> <connection>scm:git:https://github.com/apache/zookeeper.git</connection> <developerConnection>scm:git:https://github.com/apache/zookeeper.git</developerConnection> <url>https://gitbox.apache.org/repos/asf/zookeeper.git</url> </scm> It is important to have such tag in order to be able to use the Maven Release Plugin to perform the release It would be very good to be able to use the standard Maven procedure for packaging and performing the release. Enrico
