如何在pom中添加仅包含依赖项jar的构建ear文件

时间:2012-05-03 07:33:17

标签: java web-applications maven-2 ear pom.xml

我想使用maven创建一个只包含依赖jar文件的ear。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <dependencies>
        <dependency>
            <groupId>groupId</groupId>
            <artifactId>artifactId</artifactId>
        </dependency>
        ......
        ......
        ......
    </dependencies>

    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-ear-plugin</artifactId>
            <configuration>
                <modules>
                    <jarModule>
                        <groupId>groupId</groupId>
                        <artifactId>artifcatId</artifactId>
                        <includeInApplicationXml>true</includeInApplicationXml>
                    </jarModule>
                </modules>
                ...............
                ...............
            </configuration>
        </plugin>
    </plugins>          
</project>

Maven自动创建了application.xml,其中包含这些jar的条目,但是在部署时,我在控制台中收到消息 - “没有找到模块。”

你能帮我解决一下我在这里失踪的事情。

1 个答案:

答案 0 :(得分:0)

EAR文件应包含WAR,RAR,SAR和EJB JAR。就EAR而言,其他任何东西,包括基本的库JAR都是不重要的,就Java EE Application Server而言,只有那些文件的EAR是无用的。