Thanks Martin. For those that may want to do this as well, here is a brief history of how I downloaded the source and built it (assumes you have git and maven installed).
$ mkdir ~/opensource $ cd ~/opensource $ mkdir repos $ git clone https://github.com/wicketstuff/core.git wicketstuff-core $ cd wicketstuff-core/jdk-1.5-parent/annotation $ mvn -Dmaven.repo.local=~/opensource/repos/ package The jar files will be in the target (wicketstuff-annotation-1.5-SNAPSHOT.jar and wicketstuff-annotation-1.5-SNAPSHOT-sources.jar) Just as an FYI: I decided to use a different maven local repository because of how our local development environment is setup. Feel free to skip the -Dmaven.repo.local flag if this doesn't concern you (it will save you some time if you already use maven). -Doug -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-stuff-1-5-in-Maven-repos-tp3692766p3693211.html Sent from the Forum for Wicket Core developers mailing list archive at Nabble.com.
