File dependency question

2007-08-17 Thread Chris Russell
Hi All, I have a really silly question. Currently I can build my EAR file via JDeveloper and it deploys and runs just fine. When I build and deploy via Maven, one file is missing from the EAR file. This file should be found at the top level of the EAR (i.e. if you open the EAR with winZip,

Re: File dependency question

2007-08-17 Thread Wayne Fay
I am assuming Deploy is your EAR project. If so, the file should go in /src/main/application. You can see this in the maven-ear-plugin documentation -- look at earSourceDirectory. http://maven.apache.org/plugins/maven-ear-plugin/ear-mojo.html Wayne On 8/17/07, Chris Russell [EMAIL PROTECTED]

Re: File dependency question

2007-08-17 Thread Chris Russell
It always so obvious when someone tells you. That worked great - Thanks Wayne. Chris Wayne Fay wrote: I am assuming Deploy is your EAR project. If so, the file should go in /src/main/application. You can see this in the maven-ear-plugin documentation -- look at earSourceDirectory.