从Maven程序集中排除“提供的”依赖项

时间:2009-09-22 09:21:27

标签: maven-2 maven-plugin

我正在尝试使用Maven程序集插件来构建jar-with-dependencies,除了那些提供了范围的内容。

我已将jar-with-dependencies复制到assembly.xml文件中并在我的pom中配置它的用法。这里仅供参考:

<?xml version="1.0" encoding="UTF-8"?>
<assembly>
  <id>injectable-jar</id>
  <formats>
    <format>jar</format>
  </formats>
  <includeBaseDirectory>false</includeBaseDirectory>
  <dependencySets>
    <dependencySet>
      <unpack>true</unpack>
      <scope>runtime</scope>
    </dependencySet>
  </dependencySets>
  <fileSets>
    <fileSet>
      <directory>${project.build.outputDirectory}</directory>
    </fileSet>
  </fileSets>
</assembly>

我发现,如果我将范围设置为provided,那么我可以构建一个包含我不想想要的内容的jar,但我无法弄清楚如何获得反向行为。

4 个答案:

答案 0 :(得分:19)

这有点笨拙,但您可以使用maven-dependency-plugin将所有依赖项复制/解压缩到项目中,然后使用程序集插件进行打包。

copy-dependenciesunpack-dependencies目标都有一个可选的excludeScope属性,您可以将其设置为省略provided依赖项。下面的配置将所有依赖项复制到target / lib中,可以修改程序集插件描述符以使用fileSet来包含这些jar。

更新:刚刚对此进行了测试以确认其有效。添加了将程序集插件绑定到程序包阶段的配置,以及对程序集描述符的相关修改。

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-dependency-plugin</artifactId>
  <executions>
    <execution>
      <id>copy-dependencies</id>
      <phase>process-resources</phase>
      <goals>
        <goal>copy-dependencies</goal>
      </goals>
      <configuration>
        <excludeScope>provided</excludeScope>
        <outputDirectory>${project.build.directory}/lib</outputDirectory>
      </configuration>
    </execution>
  </executions>
</plugin>
<plugin>
  <artifactId>maven-assembly-plugin</artifactId>
  <version>2.2-beta-4</version>
  <executions>
    <execution>
      <id>jar-with-deps</id>
      <phase>package</phase>
      <goals>
        <goal>single</goal>
      </goals>
    </execution>
  </executions>
  <configuration>
    <descriptors>
      <descriptor>src/main/assembly/my-assembly.xml</descriptor>
    </descriptors>
  </configuration>
</plugin>

my-assembly描述符的fileSet部分如下所示:

<assembly>
  <fileSets>
    <fileSet>
      <directory>${project.build.directory}/lib</directory>
      <outputDirectory>/</outputDirectory>
      <includes>
        <include>*.*</include>
      </includes>
    </fileSet>
  </fileSets>
...

</assembly>

答案 1 :(得分:4)

理论上标签“ignoreNonCompile”和“excludeScope”应该有所帮助,但要注意它们不一定能正常工作。

使用maven3和maven-dependency-plugin 2.4,一个解决方案是:

<configuration>
<excludeArtifactIds>junit,mockito-all</excludeArtifactIds>
<excludeTransitive>true</excludeTransitive>
</configuration>

答案 2 :(得分:0)

使用最新的Maven(我在Maven 3.0上测试),这似乎按预期工作,但有一些警告:

请求的范围(在dependencySet中)可能包含基于以下定义的其他范围:http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Scope

因此,如果您请求编译范围,您将获得编译和提供。但是,如果您请求运行时作用域,则应该获得编译和运行时(但不提供)。

答案 3 :(得分:0)

这是一篇旧帖子,但maven-dependency-plugin现在有一个“excludeScope”选项,你可以设置为“提供”或你需要的任何范围。

http://maven.apache.org/plugins/maven-dependency-plugin/copy-dependencies-mojo.html#excludeScope

例如,

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>2.10</version>
    <executions>
        <execution>
            <id>copy-dependencies</id>
            <phase>prepare-package</phase>
            <goals>
                <goal>copy-dependencies</goal>
            </goals>
            <configuration>
                <outputDirectory>${project.build.directory}/lib</outputDirectory>
                <overWriteReleases>false</overWriteReleases>
                <overWriteSnapshots>false</overWriteSnapshots>
                <overWriteIfNewer>true</overWriteIfNewer>
                <excludeScope>provided</excludeScope>
            </configuration>
        </execution>
    </executions>
</plugin>