web-dev-qa-db-ja.com

Mavenアセンブリプラグインから依存関係を除外する方法:jar-with-dependencies?

Mavenのアセンブリプラグインを使用すると、descriptorRef jar-with-dependenciesのすべての依存関係を含む大きなjarを作成できます。

これらの依存関係の一部を除外するにはどうすればよいですか?そのような構成がないようです?別の解決策はありますか?

26

これは example がこれを行う1つの方法を示しています。

 <dependencySets>
    <dependencySet>
      ....
      <excludes>
        <exclude>commons-lang:commons-lang</exclude>
        <exclude>log4j:log4j</exclude>
      </excludes>
    </dependencySet>
    ....
  </dependencySets>

基本的に、excludesで利用可能なdependencySetオプションを使用します。

参照: https://maven.Apache.org/plugins/maven-Assembly-plugin/Assembly-component.html

11
Raghuram

<scope>provided</scope> jar-with-dependenciesに含めたくない依存関係(例:.

    <dependency>
      <groupId>storm</groupId>
      <artifactId>storm</artifactId>
      <version>0.6.1-SNAPSHOT</version>
      <scope>provided</scope>
    </dependency>
23
Jeroen Vuurens

excludesにあるdependencySetオプションを使用する必要があります。
以下に従ってください:

pom.xmlの例:

...
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-Assembly-plugin</artifactId>
        <version>2.3</version>
        <configuration>
          <finalName>../final/${project.artifactId}</finalName>
          <archive>
            <manifest>
              <addClasspath>false</addClasspath>
              <mainClass>com.entrerprise.App</mainClass>
            </manifest>
          </archive>
          <descriptors>
            <descriptor>src/main/resources/jar-with-deps-with-exclude.xml</descriptor>
          </descriptors>
          <appendAssemblyId>false</appendAssemblyId>
        </configuration>
        <executions>
          <execution>
            <id>make-Assembly</id>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
...

ここで、新しいファイルjar-with-deps-with-exclude.xml(where dependencySet live)を使用します。

 <?xml version="1.0" encoding="UTF-8"?>
    <Assembly xmlns="http://maven.Apache.org/Assembly/2.0.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.Apache.org/Assembly/2.0.0 http://maven.Apache.org/xsd/Assembly-2.0.0.xsd">
        <id>jar-with-dependencies-and-exclude-classes</id>
        <formats>
          <format>jar</format>
        </formats>
        <includeBaseDirectory>false</includeBaseDirectory>
        <dependencySets>
          <dependencySet>
            <outputDirectory>/</outputDirectory>
            <useProjectArtifact>false</useProjectArtifact>
            <unpack>true</unpack>
            <scope>runtime</scope>
            <excludes>
              <exclude>junit:junit</exclude>
              <exclude>commons-cli:commons-cli</exclude>
              <exclude>org.Apache.maven.wagon:wagon-ssh</exclude>
            </excludes>
           </dependencySet>
        </dependencySets>
        <fileSets>
          <fileSet>
            <outputDirectory>/</outputDirectory>
            <directory>${project.build.outputDirectory}</directory>
          </fileSet>
        </fileSets>
      </Assembly>

それで全部です。

9
felipealves.gnu