Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Build the projects with maven (we are skipping runit the unit tests here, but you should run them at least once on the release branch before continuing)

    Ensure that you are using JDK8 and Maven 3.6+

  • There is no need to build the C client or "contrib" packages

    Code Block
    git checkout $TAG
    
    mvn release:perform -Darguments='-DskipTests=true -Pfull-build,apache-release' -Papache-release,full-build 
    


  • You should have the SIGNED jar files and also the tarballs built. The two tarball is available at:
    • zookeeper-assembly/target/apache-zookeeper-X.Y.Z-bin.tar.gz
    • zookeeper-assembly/target/apache-zookeeper-X.Y.Z.tar.gz
  • This command also staged all of the maven artifacts to repository.apache.org

...