How do I correctly use SNAPSHOTS dependencies with EARs and EJBs

半城伤御伤魂 提交于 2019-12-23 19:24:37

问题


I am trying to build an EJB in an EAR. My EJB has dependencies on SNAPSHOTS. So when I build the EAR my structure looks like this:

my-ear-1.0.0-SNAPSHOT.ear
 + META-INF  
  - application.xml
  - MANIFEST.MF
 - my-ejb-1.0.0-SNAPSHOT.jar
 - third-party-lib-1.0.0-SNAPSHOT.jar

However, when using the maven-ejb-plugin to generate its MANIFEST.MF:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-ejb-plugin</artifactId>
  <version>2.3</version>
  <configuration>
    <archive>
      <manifest>
        <addClasspath>true</addClasspath>
      </manifest>
    </archive>
  </configuration>
</plugin>

The problem I have, is the MANIFEST.MF lists the SNAPSHOT as how it appears in Nexus which is not how the maven-ear-plugin named it when building the ear.

Manifest-Version: 1.0
Build-Jdk: 1.6.0_25
Class-Path: third-party-lib-1.0.0-20121026.140152-21.jar

So of course I'm getting ClassNotFoundException s because the EJBs classpath is looking for a jar file that doesn't exist.

Basically I need to know either:

  1. How do I get the maven-ear-plugin to pull in the jars into the ear without the -SNAPSHOT format?
  2. How do I get the maven-ejb-plugin to use the -SNAPSHOT format in the MANIFEST.MF?

回答1:


I found the solution to my problem by looking through the maven archiver documentation at Maven Archiver - Handling Snapshots.

I just needed to configure my maven-ejb-plugin so that it didn't use "unique versions":

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-ejb-plugin</artifactId>
            <version>2.3</version>
            <configuration>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>                           
                        <useUniqueVersions>false</useUniqueVersions>
                    </manifest>
                </archive>
            </configuration>
        </plugin>

RTFM closer next time I guess :)



来源:https://stackoverflow.com/questions/13090487/how-do-i-correctly-use-snapshots-dependencies-with-ears-and-ejbs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!