I recently pulled the storm source code and started trying to build it locally just to hack around and hopefully I can start committing some code. I'm running into a problem doing a build.
1. First I ran "mvn clean install" in the root directory and got a error that storm-hdfs is missing the storm-core jar. 2. So I tried to build storm-core first and ran into the following issue: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugin:2.2:shade (default) on project storm-core: Execution default of goal org.apache.maven.plugins:maven-shade-plugin:2.2:shade failed: Plugin org.apache.maven.plugins:maven-shade-plugin:2.2 or one of its dependencies could not be resolved: Could not find artifact org.apache.storm:maven-shade-clojure-transformer:jar:0.9.3-incubating-SNAPSHOT in apache.snapshots (http://repository.apache.org/snapshots) I looked at the maven repo site and see that the SNAPSHOT is missing ( http://repository.apache.org/content/groups/snapshots/org/apache/storm/maven-shade-clojure-transformer/). I see the 0.9.2 and 0.9.1 but the 0.9.3 is missing. Am I missing a step in doing the build or does a new jar needs to be placed in the remote maven repo? Naresh
