Question about building with Maven This is my first time building Shindig out of the box, and so I am slightly confused as to whether the instructions are correct...
This is what the instructions say : Building and running the code *with Maven* cd ~/src/shindig/java/gadgets mvn package However, this is what I had to do in order to get up and running... cd ~/src/shindig/java/common mvn package mvn install cd ~/src/shindig/java/gadgets mvn package The reason I had to do this is because shindig-common-1-SNAPSHOT.jar is not ACTUALLY anywhere out on the net in the repository locations listed in the pom.xml So, first I have to build the common jar and then do a mvn install to actually install it into my local repository... If I don't do that extra step in common then I get a Maven error message saying... that it can't find shindig-common-1-SNAPSHOT.jar Thanks for clarifying this installation step, Michael I Angerman

