Maven multilple dependency

2007-10-01 Thread Eguzki Astiz Lezaun
Hello, In our project, we have two different modules separated into two eclipse projects. We use ant for project compilation, packaging and deployment. Dependency management is achieved using maven inside ant build.xml script. One of the modules depends on the other, i.e. module B depends on

Maven multilple dependency

2007-09-27 Thread Raj Pillai
Hi Maven Users, Is it possible to add multiple jars in the dependency dynamically or as a group. Else how else to handle this best. I have like 30 jars under a specific directory and I am using systemPath way to add the dependency. All these jars has timestamp in its name and will kee

Re: Maven multilple dependency

2007-09-27 Thread Wayne Fay
Write a shell script to punch out nodes (to a file or command line) that you can copy and paste into your pom every time it changes. I know of no other way to handle this situation. Ideally you won't use system scope either -- you'll "mvn install:install-file" those files and then knock out the

Maven multilple dependency

2007-09-27 Thread Raj Pillai
Hi Maven Users, Is it possible to add multiple jars in the dependency dynamically or as a group. Else how else to handle this best. I have like 30 jars under a specific directory and I am using systemPath way to add the dependency. All these jars has timestamp in its name and will kee