I just cloned the Storm starter project using this command git clone git://github.com/apache/incubator-storm.git
then I move into this directory: cd incubator-storm/examples/storm-starter and run this Maven command: mvn test Then I get build errors, like this: -starter$ mvn test [INFO] Scanning for projects... [INFO] [INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1 [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building storm-starter 0.9.2-incubating-SNAPSHOT [INFO] ------------------------------------------------------------------------ Downloading: http://repository.apache.org/snapshots/org/apache/storm/storm-core/0.9.2-incubating-SNAPSHOT/maven-metadata.xml Downloading: https://clojars.org/repo/org/apache/storm/storm-core/0.9.2-incubating-SNAPSHOT/maven-metadata.xml Downloading: https://clojars.org/repo/org/apache/storm/storm-core/0.9.2-incubating-SNAPSHOT/storm-core-0.9.2-incubating-SNAPSHOT.pom Downloading: http://repository.apache.org/snapshots/org/apache/storm/storm-core/0.9.2-incubating-SNAPSHOT/storm-core-0.9.2-incubating-SNAPSHOT.pom [WARNING] The POM for org.apache.storm:storm-core:jar:0.9.2-incubating-SNAPSHOT is missing, no dependency information available Downloading: https://clojars.org/repo/org/apache/storm/storm-core/0.9.2-incubating-SNAPSHOT/storm-core-0.9.2-incubating-SNAPSHOT.jar Downloading: http://repository.apache.org/snapshots/org/apache/storm/storm-core/0.9.2-incubating-SNAPSHOT/storm-core-0.9.2-incubating-SNAPSHOT.jar [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 6.283 s [INFO] Finished at: 2014-04-10T08:30:07-06:00 [INFO] Final Memory: 8M/81M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal on project storm-starter: Could not resolve dependencies for project org.apache.storm:storm-starter:jar:0.9.2-incubating-SNAPSHOT: Could not find artifact org.apache.storm:storm-core:jar:0.9.2-incubating-SNAPSHOT in clojars (https://clojars.org/repo/) -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. How do I update the POM so the dependencies are resolved? David Novogrodsky [email protected] http://www.linkedin.com/in/davidnovogrodsky
