How to build Apache Cassandra 4.1 from Source Code in Windows 10 Command line using Ant 1.10, JDK 11
In this video we are going to see how to build Apache Cassandra 4.1 source code in Windows Command line using Apache Ant 1.10 and JDK 11.
Make sure that Ant and JDK 11 are in the path before building the binaries.
Just download the source code zip file. Extract it and just execute the below ant command to build the Cassandra binaries.
ant -Duse.jdk11=true -Drat.skip=true
-Drat.skip=true --- will skip the auditing tool which will check for license compliance.
After building you can see the binaries/jars in the \build directory
Below is the download links for Apache Cassandra 4.1 Source Code.
https://github.com/apache/cassandra/tags
https://github.com/apache/cassandra/releases/tag/cassandra-4.1.0
#cassandra #opensource #apacheant #javaprojects