21

我们正在尝试构建一个包含未打包依赖 jar 的客户端jar。清单应该有class-path依赖 jar 的条目。下面的代码片段有效,但罐子已解包 - 我们如何阻止罐子被解包?

       <plugin>
            <artifactId>maven-assembly-plugin</artifactId>

            <configuration>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>

                <archive>
                  <manifest>
                    <addClasspath>true</addClasspath>
                  </manifest>
                </archive>
            </configuration>

            <executions>
                <execution>
                    <id>make-assembly</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
4

3 回答 3

21

实际上,使用组装jar-with-dependencies会导致 maven 解包所有依赖项,如在相应组装描述符中${assembly.dependencySets.dependency.unpack}设置的那样。true

一个简单的解决方法是提供一个类似于 的程序集描述符jar-with-dependencies.xml并修改${assembly.dependencySets.dependency.unpack}false,如下所示:

编辑:由于未知原因,使用时的行为<unpack>false</unpack>并不完全相同,似乎有必要添加<outputDirectory>/</outputDirectory>到 fileSet 或者您没有得到预期的结果。

<assembly>
  <id>uberjar</id>
  <formats>
    <format>jar</format>
  </formats>
  <includeBaseDirectory>false</includeBaseDirectory>
  <dependencySets>
    <dependencySet>
      <unpack>false</unpack>
      <scope>runtime</scope>
    </dependencySet>
  </dependencySets>
  <fileSets>
    <fileSet>
      <directory>${project.build.outputDirectory}</directory>
      <outputDirectory>/</outputDirectory>
    </fileSet>
  </fileSets>
</assembly>
于 2009-11-18T21:21:17.460 回答
6

您可以将依赖项作为 jar 文件添加到 jar 中:

程序集描述符.xml

<assembly>
    <id>uberjar</id>
    <formats>
        <format>jar</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <dependencySets>
        <dependencySet>
            <unpack>false</unpack>
            <scope>runtime</scope>
            <useProjectArtifact>false</useProjectArtifact>
        </dependencySet>
    </dependencySets>
    <fileSets>
        <fileSet>
            <directory>${project.build.outputDirectory}</directory>
            <outputDirectory>.</outputDirectory>
        </fileSet>
    </fileSets>
</assembly>

pom.xml

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>2.6</version>
    <executions>
        <execution>
            <id>make-uberjar</id>
            <phase>package</phase>
            <goals>
                <goal>single</goal>
            </goals>
            <configuration>
                <descriptor>src/main/assemble/assembly-descriptor.xml</descriptor>
            </configuration>
        </execution>
    </executions>
</plugin>

但不幸的是,您不能使用中的Class-Path标头manifest.mf,请参阅将类添加到 JAR 文件的类路径

注意:Class-Path头指向本地网络上的类或 JAR 文件,而不是 JAR 文件中的 JAR 文件或可通过 Internet 协议访问的类。要将 JAR 文件中的 JAR 文件中的类加载到类路径中,您必须编写自定义代码来加载这些类。例如,如果MyJar.jar包含另一个名为 的 JAR 文件MyUtils.jar,则不能使用清单中的Class-Path标头将类加载到类路径中。MyJar.jar'sMyUtils.jar

于 2016-01-19T14:32:57.810 回答
3

Pascal Thivent 提出的解决方案为 Maven 程序集插件定义了一个新程序集。Maven 程序集插件提供默认程序集,它们是“bin”、“jar-with-dependencies”、“project”和“src”,可生成各种预定义的包。

必须在新的 xml 文件中定义新的程序集,大部分时间位于 src/assemble.xml 中。然后它将被加载而不是预定义的,这样:

<plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-assembly-plugin</artifactId>
      <version>2.2-beta-5</version>
      <configuration>

          <!-- disabled predefined assembly -->
          <!--
          <descriptorRefs>
             <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
          -->

          <descriptors>
             <descriptor>src/assemble/myAssembly.xml</descriptor>
          </descriptors>
      </configuration>
</plugin>
于 2010-11-28T19:39:40.930 回答