Как исключить зависимости из плагина сборки maven: jar-with-dependencies? - PullRequest
25 голосов
/ 02 июня 2011

Плагин сборки Maven позволяет создавать большой jar-файл со всеми зависимостями с помощью descriptorRef jar-with-dependencies.

Как можно исключить некоторые из этих зависимостей?Кажется, у него нет такой конфигурации?Есть ли другое решение?

Ответы [ 3 ]

21 голосов
/ 29 марта 2015

Добавьте <scope>provided</scope> к зависимостям, которые вы не хотите включать в jar-with-dependencies, например

    <dependency>
      <groupId>storm</groupId>
      <artifactId>storm</artifactId>
      <version>0.6.1-SNAPSHOT</version>
      <scope>provided</scope>
    </dependency>
11 голосов
/ 02 июня 2011

Этот пример указывает на один из способов сделать это:

 <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

8 голосов
/ 18 декабря 2017

Вы должны использовать опцию 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 (где 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>

Вот и все.

...