3

我有一个 pom.xml 和单独的 assembly-descriptor.xml 文件。最终结果是一个 tar.gz 文件,其中包含我的 tomcat webapp 和一些 jar 文件。当我在本地开发盒(Mac OS 10.7 和 Maven 3.0.3)上构建它时,生成的 tar.gz 包含一个有效的 jar 文件。当构建在我们的构建框(Linux 服务器/Maven 3.0.3 上的 Jenkins)上运行并部署到生产服务器时,jar 文件几乎是它应该大小的两倍并且已损坏。当我将 maven 程序集插件的版本更改为 2.3 或 2.4 时,我可以在本地重现倍增/损坏问题。当我将其设置为 2.1 或 2.2 或无版本(默认为 2.2 beta 5)时,它可以在本地工作。但无论我选择什么版本,在构建框上的 tar gz 步骤期间构建都会失败。(本地 java 版本 = 1.6.0_37 并且构建系统是 1.6.0_34 但我没有
这是我的 pom.xml:

<plugin>
        <groupId>org.apache.maven.plugins</groupId> 
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.3</version>
        <configuration>
            <encoding>UTF-8</encoding>
            <finalName>${project.build.finalName}_${project.version}</finalName>
            <descriptors>
                <descriptor>src/main/assembly/assembly-descriptor.xml</descriptor>
            </descriptors>
            <attach>true</attach>
        <appendAssemblyId>false</appendAssemblyId>
        </configuration>
        <executions>
            <execution>
                <id>package-tar-gz</id>
                <phase>package</phase>
                <goals>
                    <goal>single</goal>
                </goals>
            </execution>
        </executions>
      </plugin>...

` 这是程序集描述符 (assembly-descriptor.xml):

    <?xml version="1.0" encoding="UTF-8"?>
    <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0     http://maven.apache.org/xsd/assembly-1.1.0.xsd">
  <id>bin</id>
  <includeBaseDirectory>false</includeBaseDirectory>
  <formats>
    <format>tar.gz</format>
  </formats>
  <fileSets>
    <fileSet>
      <directory>${project.basedir}/src/main/tomcat</directory>
      <filtered>true</filtered>
      <excludes>
          <exclude>**/*.war</exclude>
      </excludes>
      <outputDirectory>/</outputDirectory>
    </fileSet>
  </fileSets>
</assembly>

最后,本地构建和生产构建之间的另一个区别是生产构建使用本地存储库,而我的本地构建没有。我没有给予太多关注,因为我能够在本地重现 jar 文件加倍/损坏问题(即没有本地 repo 问题)。

4

1 回答 1

1

尝试删除true,这可能是罪魁祸首

于 2016-05-13T14:55:47.910 回答