我正在使用ant-ivy来解决maven存储库中的依赖关系。而且我使用相同的ant-ivy将新工件发布到该存储库中,所以我也在ant中生成.pom文件。
生成的.pom文件非常简单,看起来像这样(PROJECT_A):
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>COMPANY</groupId>
<artifactId>PROJECT_A</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>1.7</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
所以它只是在编译范围内有一些依赖,有些在测试范围内。现在我的该项目的ivy.xml文件(以及上面.pom的源代码)如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="COMPANY" module="PROJECT_A" revision="1.0" />
<configurations defaultconf="default,sources" defaultconfmapping="sources->sources;%->default">
<conf name="test" visibility="private"/>
<conf name="default" description="list of dependencies"/>
<conf name="sources" description="source files for all dependencies" />
</configurations>
<publications>
<artifact type="jar" conf="default" />
<artifact type="sources" ext="jar" m:classifier="sources" conf="sources" />
<artifact type="pom" ext="pom" conf="default" />
</publications>
<dependencies>
<!-- General -->
<dependency org="commons-collections" name="commons-collections" rev="3.2.1" transitive="false"/>
<dependency org="commons-configuration" name="commons-configuration" rev="1.7" transitive="false"/>
<dependency org="commons-lang" name="commons-lang" rev="2.6" transitive="false"/>
<dependency org="log4j" name="log4j" rev="1.2.16" transitive="false"/>
<!-- dependencies for junit testing -->
<dependency org="junit" name="junit" rev="latest.release" conf="test" />
<dependency org="org.mockito" name="mockito-all" rev="latest.release" conf="test" /> <!-- it's useful by itself, plus it has hamcrest in it which junit needs -->
</dependencies>
</ivy-module>
同样,非常简单 - 3种配置,默认具有所有依赖关系,test用于测试依赖关系和源以发布源。
这一切都运行得很好,除了一件事 - 我在PROJECT_A中声明我的依赖关系不可传递,然后当我将pom推送到存储库时,那些依赖关系被列在范围编译中。因此,将PROJECT_A作为依赖项的另一个项目(PROJECT_B)也将拥有PROJECT_A的所有传递依赖项,而我根本不想要那些我只想要在ivy.xml中显式声明的那些项目。 PROJECT_A。
我尝试过使用范围和映射,但似乎我真的不明白我在那里做什么,因为它没有任何意义。我想以某种方式修改该方案,以便当我将PROJECT_A作为依赖项包含时,它将仅包含在ivy.xml中声明的PROJECT_A的实际依赖项,因此将考虑传递标记。
还有一件事,我正在创建那样的.pom文件:
<ivy:makepom ivyfile="generated-ivy.xml" pomfile="${ant.project.name}.pom" templatefile="${template.pom}" artifactPackaging="jar">
<mapping conf="default" scope="compile" />
<mapping conf="test" scope="test" />
</ivy:makepom>
答案 0 :(得分:0)
将依赖项标记为<optional>
以使其不可传递。
肮脏的黑客,但那是maven。