maven/quickstart question

2009-09-23 Thread Chris Colman
I've been using wicket under for a while now, always using ant, but now I have to create a quickstart app and I'm new to maven... I've created the quickstart app and it runs under Jetty no problem but where does it store the Wicket and Jetty .jars? They don't seem to be under the directory I

maven/quickstart question

2009-09-23 Thread jWeekend
Chris, Maven creates a local repository of libraries your projects depend on. Take a look under .m2 in your home directory. Regards - Cemal jWeekend OO Java Technologies, Wicket Training and Development http://jWeekend.com I've been using wicket under for a while now, always using ant, but

Re: maven/quickstart question

2009-09-23 Thread Pedro Santos
They probably are at user home. You can know more about maven settings at: http://maven.apache.org/settings.html * localRepository*: This value is the path of this build system's local repository. The default value is ${user.home}/.m2/repository. This element is especially useful for a main build

RE: maven/quickstart question

2009-09-23 Thread Chris Colman
Cool, thanks for the info. That repository looks like the manually managed one I maintain for ant's use to allow sharing of jars across multiple projects. I guess maven has automated that process somewhat. The default value is ${user.home}/.m2/repository. This element is especially useful for a