The easiest way to get the build artifacts would probably be to build Storm yourself. Clone https://github.com/apache/storm and check out 1.x-branch. Then do "mvn clean install -DskipTests" in the project root. This will put all the artifacts (e.g. stuff like storm-kafka-client) in your local Maven repository (likely in ~/.m2/repository unless you've changed some settings), and also in the /target directories of the respective modules.
If you also need to generate a distribution like what you would find on https://storm.apache.org/downloads.html, once you've built the rest of Storm you can go into storm-dist/binary and do "mvn clean package -Dgpg.skip". This will put the distribution files in storm-dist/binary/final-package/target. See the documentation at https://github.com/apache/storm/blob/1.x-branch/DEVELOPER.md#building and https://github.com/apache/storm/blob/1.x-branch/DEVELOPER.md#create-a-storm-distribution-packaging . 2018-06-26 21:14 GMT+02:00 Alexandre Vermeerbergen <[email protected] >: > Hello, > > I am looking for a simple way to validate couple of JIRAs marked as > resolved on Apache Storm 1.2.3 with our large topologies & setup. > > Is there a way to access binaries from a snapshot build, and/or the > latest 1.2.3 sources ? > > What would be the URLs to retrieves either binary artifacts or sources > corresponding to latest commits in 1.2.3 branch ? > > Note: I have checked on http://storm.apache.org/downloads.html but I > found no clue about where to find such items. > > Best regards, > Alexandre Vermeerbergen >
