I'm been playing with maven 2. Attached is a tiny eclipse project that will build an archetype for the spring samples webapp-minimal (see description comment in the top-level pom). I found it a pretty useful learning experience, but I reckon it's a good way to package things, even if the maven docs have a long way to come.
You don't have to use the attachment as an eclipse project. Just unpack and run "mvn install" from the root directory, and you can create an archetype project (in a different directory) with
Then you should be able to "cd minimal; mvn jetty:run", and see theCode:mvn archetype:create -DgroupId=com.mycompany -DartifactId=minimal \ -DarchetypeGroupId=org.springframework.samples \ -DarchetypeArtifactId=archetype-webapp-minimal -DarchetypeVersion=1.0.0
app come up on localhost:8080/minimal. Cool!
Any use? Someone would have to add licensing and url information to publish it at ibiblio.
P.S. I heard that the core Spring team were moving to mave 2 for everything. I noticed that ibiblio only has 2.0-M4 as the most recent spring build. I guess you guys are not really serious about it yet?


