> I am using maven 2
> my project contains subprojects    ear , war , and jar.
> here my project pom.xml

I actually took your files and recreated your project (with no code
obviously). I had to make an empty web.xml file in the WAR and tweak a
dependency, but otherwise it all "just worked".

Here are the adjustments I made:
audit.war/pom.xml
refers to opensymphony:osworkflow:2.8.0 which I had to download and
install locally
C:\cvs_root\testing_maven\test2>mvn install:install-file
-DgroupId=opensymphony -DartifactId=osworkflow -Dversion=2.8.0
-Dpackaging=jar -Dfile=osworkflow-2.8.0.jar -DgeneratePom=true

audit.war/pom.xml
refers to org.wicketstuff:jquery:1.4-rc2 which does not seem to exist,
changed to
       <dependency>
           <groupId>org.wicketstuff</groupId>
           <artifactId>wicketstuff-jquery</artifactId>
           <version>1.4-rc2</version>
       </dependency>

all pom.xml files
refer to <version>1</version> which is generally a bad idea, you need
to change that to 1.0.0-SNAPSHOT or some other snapshot version

Here's the results:
BUILD SUCCESSFUL
-----------------------
Total time: 17 seconds

So, I assume it failed because of that wicketstuff-jquery artifact...
or something else entirely.

Wayne

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to