簡體   English   中英

Maven Maven-assembly-plugin jar-with-dependencies從最終jar中排除LICENSE.txt

[英]Maven maven-assembly-plugin jar-with-dependencies exclude LICENSE.txt from final jar

我正在使用Maven打包單個可執行jar,但似乎無法弄清楚如何不將LICENSE.txt和NOTICE.txt文件放入其中。 這些文件位於最終的可執行文件.jar中,但我的項目目錄中沒有此類文件。

我嘗試了多種無效的配置。 我現在的位置如下:

在我的pom.xml中,我具有:

<build>
  <plugins>
      <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.4</version>                
            <configuration>
                <archive>
                    <manifest>
                        <mainClass>main.Main</mainClass>
                    </manifest>
                </archive>
                <excludes>
                    <exclude>README*</exclude>
                    <exclude>LICENSE*</exclude>
                    <exclude>NOTICE*</exclude>
                </excludes>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
                <appendAssemblyId>false</appendAssemblyId>                    
            </configuration>
            <executions>
                <execution>
                    <id>maven-assembly-plugin</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

我也嘗試在pom.xml內部使用

<descriptors>
    <descriptor>/src/assembly/src.xml</descriptor>
</descriptors>

代替

                <excludes>
                    <exclude>README*</exclude>
                    <exclude>LICENSE*</exclude>
                    <exclude>NOTICE*</exclude>
                </excludes>

/src/assembly/src.xml的內容:

        <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
            <id>distribution</id>
            <formats>
                <format>jar</format>
            </formats>
            <fileSets>
                <fileSet>
                    <excludes>
                        <exclude>README*</exclude>
                        <exclude>LICENSE*</exclude>
                        <exclude>NOTICE*</exclude>
                    </excludes>
                    <!--useDefaultExcludes>false</useDefaultExcludes-->
                </fileSet>
            </fileSets>
        </assembly>

但是為此,我Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:2.4:single (maven-assembly-plugin) on project DatabaseTaseng: Failed to create assembly: Error creating assembly archive distribution: A zip file cannot include itself -> [Help 1]

我應該如何配置它以獲取具有不帶那些.txt文件的依賴項的單個可執行jar?

我不使用文件集...

我使用以下配置:

http://maven.apache.org/plugins/maven-assembly-plugin/examples/single/filtering-some-distribution-files.html

 <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2   http://maven.apache.org/xsd/assembly-1.1.2.xsd">
     <id>distribution</id>
  <formats>
    <format>jar</format>
  </formats>
  <files>
    <file>
      <source>README.txt</source>
      <outputDirectory>/</outputDirectory>
      <filtered>true</filtered>
    </file>
    <file>
      <source>LICENSE.txt</source>
      <outputDirectory>/</outputDirectory>
    </file>
    <file>
      <source>NOTICE.txt</source>
      <outputDirectory>/</outputDirectory>
      <filtered>true</filtered>
    </file>
  </files>
 </assembly>

此配置應過濾生成輸出jar時所需的文件...因此,它還應過濾將要生成的文件...

我希望這對您有用...

exclusions標記用於排除jar依賴項。 DependencySet標記允許使用unpackOptions ,該選項具有在解壓縮依賴項時包括/排除文件的選項。 因此您的程序集應類似於:

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
   <!-- TODO: a jarjar format would be better -->
   <id>jar-with-dependencies</id>
   <formats>
      <format>jar</format>
   </formats>
   <includeBaseDirectory>false</includeBaseDirectory>
   <dependencySets>
      <dependencySet>
         <outputDirectory>/</outputDirectory>
         <useProjectArtifact>true</useProjectArtifact>
         <unpack>true</unpack>
         <scope>runtime</scope>
         <unpackOptions>
            <excludes>
               <exclude>**/README.txt</exclude>
            </excludes>
         </unpackOptions>
      </dependencySet>
   </dependencySets>
</assembly>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM