0

我的 maven 项目有几个依赖的 jar,但是当我创建项目的 jar 时,我想包含这些依赖的子集。有没有办法做到这一点?目前,我正在使用下面的 pom.xml(来自问题How can I create an executable JAR with dependencies using Maven?),但它正在将每个依赖项与我的项目打包在一起。

<build>
<plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
            <archive>
                <manifest>
                    <addClasspath>true</addClasspath>
                </manifest>
            </archive>
        </configuration>
    </plugin>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
            <descriptorRefs>
                <descriptorRef>jar-with-dependencies</descriptorRef>
            </descriptorRefs>
        </configuration>
        <executions>
            <execution>
                <phase>package</phase>
                <goals>
                    <goal>single</goal>
                </goals>
            </execution>
        </executions>
    </plugin>
</plugins>
</build>
4

1 回答 1

2

尝试:

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

有关更多详细信息,请参阅包含和排除工件

于 2012-05-31T20:44:05.960 回答