Re: Ear file doesnt contain war and jar

2006-01-18 Thread Karthik V
Hi Henry, Below is my ear projects pom ... I've *** ed the proprietary stuff ... I'm trying to include abc-bean.jar, abc-war.war and commons-collection.jar into the ear file (in the directory i need) ... Note that, I tried the javamodule section (now commented) but it didnt work ... project

RE: Ear file doesnt contain war and jar

2006-01-18 Thread Dário Luís Coneglian Oliveros
file doesnt contain war and jar Hi Henry, Below is my ear projects pom ... I've *** ed the proprietary stuff ... I'm trying to include abc-bean.jar, abc-war.war and commons-collection.jar into the ear file (in the directory i need) ... Note that, I tried the javamodule section (now commented

Re: Ear file doesnt contain war and jar

2006-01-18 Thread Karthik V
/artifactId /plugin /plugins /build /project Regards, Dário -Original Message- From: Karthik V [mailto:[EMAIL PROTECTED] Sent: quarta-feira, 18 de janeiro de 2006 14:09 To: Maven Users List Subject: Re: Ear file doesnt contain war and jar Hi Henry, Below is my ear

Re: Ear file doesnt contain war and jar

2006-01-18 Thread Karthik V
-Original Message- From: Karthik V [mailto:[EMAIL PROTECTED] Sent: quarta-feira, 18 de janeiro de 2006 14:09 To: Maven Users List Subject: Re: Ear file doesnt contain war and jar Hi Henry, Below is my ear projects pom ... I've *** ed the proprietary stuff ... I'm trying

Re: Ear file doesnt contain war and jar

2006-01-18 Thread Karthik V
To: Maven Users List Subject: Re: Ear file doesnt contain war and jar Hi Henry, Below is my ear projects pom ... I've *** ed the proprietary stuff ... I'm trying to include abc-bean.jar, abc-war.war and commons-collection.jarinto the ear file (in the directory i need

Re: Ear file doesnt contain war and jar

2006-01-18 Thread Henry Isidro
Hi Karthik, Glad to hear that you've got it working. You can send artifacts to specific directories in your ear by using the bundleDir tag. More info at http://maven.apache.org/plugins/maven-ear-plugin/howto.html. HTH, Henry Karthik V wrote: I got it working finally, but dont understand

Ear file doesnt contain war and jar

2006-01-17 Thread Karthik V
I have an ear project that needs to pack 2 other projects artifacts (jar and war). In the ear project pom, I've added dependencies on both. However, the ear file produced doesnt contain these. How do I fix this problem?

Re: Ear file doesnt contain war and jar

2006-01-17 Thread Karthik V
when someone answers this question, please give a general answer to this question - how do I copy a jar file specified as dependency into the final artifact, inside the folder I want? On 1/17/06, Karthik V [EMAIL PROTECTED] wrote: I have an ear project that needs to pack 2 other projects

Re: Ear file doesnt contain war and jar

2006-01-17 Thread Max Cooper
Note: this is for Maven 1 (1.0.2, 1.1-beta-2, I don't know if anything has changed for Maven 2) In the ear project where you specify the dependencies, you specify properties to tell the ear plugin what to do with your jars and wars. Here's an example: !-- ejb jar -- dependency

Re: Ear file doesnt contain war and jar

2006-01-17 Thread Karthik V
looks like things have changed :( ... the properties tag is not being recognized. On 1/17/06, Max Cooper [EMAIL PROTECTED] wrote: Note: this is for Maven 1 (1.0.2, 1.1-beta-2, I don't know if anything has changed for Maven 2) In the ear project where you specify the dependencies, you

Re: Ear file doesnt contain war and jar

2006-01-17 Thread Henry Isidro
Hi Karthik V, The properties tag for dependencies are no longer suppported. Can you post your pom so that we can see what you are actually doing? Regards, Henry Karthik V wrote: looks like things have changed :( ... the properties tag is not being recognized. On 1/17/06, Max Cooper