Adam Hardy wrote:
Srepfler,
make sure you're using the latest maven-eclipse-plugin snapshot from the snapshots repo at http://people.apache.org/maven-snapshot-repository

This supports 1.5.

I can't help you with the jboss stuff, sorry, but it sounds like you have got your inter-project dependencies mixed up.

An EAR file doesn't produce a JAR artifact and you can't make a maven dependency on it because it doesn't have any of its own classes. You should make a dependency on the each jar directly in your war pom, installing them in your repo is they are not actual projects nor on the maven repo.

HTH
Adam

I perhaps explained incorrectly, my War has a dependency on the EJB module, not on the EAR and I declare it in the War. What happens is that the eclipse:eclipse task links the library installed in the repo not the eclipse project. Did this make more sense?
<dependency>
     <groupId>it.linksystem.csai</groupId>
     <artifactId>CSAIEJB</artifactId>
     <type>ejb</type>
     <scope>provided</scope>
</dependency>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to