Using maven2, I have the following in my pom.xml:
<plugin>
<artifactId>maven-ejb-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
and
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-j2ee</artifactId>
<version>4.0.2</version>
<scope>compile</scope>
</dependency>
I have other dependencies that I want to include in my manifest for the EJB,
but I don't want to include the J2EE jar. Does anyone have an idea on how
to do this?
-Brian Ashburn