maven build ear - 我怎样才能构建一个.ear文件而不是爆炸的耳朵?

时间:2017-02-20 10:56:45

标签: maven build ear

我只需要一个myEar.ear文件作为我的maven构建的输出。

我不想要dir myEar(爆炸的耳朵版本)。

要清楚,这是我的构建输出:

20/02/2017  11:37    <DIR>          myEar
20/02/2017  11:37         7.985.535 myEar.ear

我只想要myEar.ear。

感谢。

这是我耳朵的pom.xml:

    <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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <name>myEar</name>
  <description>myEar</description>

  <groupId>com.foo</groupId>
  <artifactId>myEar</artifactId>
  <version>1.0</version>
  <packaging>ear</packaging>

    <parent>
    </parent>

  <properties>
  </properties>

  <dependencies>

(...)

</dependencies>

  <build>
    <plugins>


      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-ear-plugin</artifactId>
        <version>2.8</version>
        <configuration>
            <defaultLibBundleDir>lib</defaultLibBundleDir>
            <generatedDescriptorLocation>${basedir}/src/main/application/META-INF</generatedDescriptorLocation>
            <modules>
                <webModule>
                    <groupId>com.foo</groupId>
                    <artifactId>myWeb</artifactId>                    
                    <contextRoot>/myWeb</contextRoot>
                </webModule>
                 <webModule>
                    <groupId>com.foo</groupId>
                    <artifactId>myWS</artifactId>                     
                    <contextRoot>/</contextRoot>
                </webModule>
            </modules>
                <archive>
                    <addMavenDescriptor>false</addMavenDescriptor>
                </archive>
        </configuration>
      </plugin>
    </plugins>

       <directory>${basedir}/../target/diraliases/EARHOMEDIR1036</directory>
       <finalName>myEar</finalName>

   </build>

</project>

1 个答案:

答案 0 :(得分:0)

我用maven-antrun-plugin修复了...在maven里面的一个蚂蚁电话......很脏......有人有更好的主意吗?

<plugin>
    <artifactId>maven-antrun-plugin</artifactId>
    <executions>
        <execution>
            <id>deleteDir</id>
            <phase>package</phase>
            <configuration>
                <tasks>
                    <delete dir="${basedir}/../target/diraliases/EARHOMEDIR1036/myEar"/> 
                </tasks>
            </configuration>
            <goals>
                <goal>run</goal>
            </goals>
        </execution>
    </executions>
</plugin>