私は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 は依存関係とソースをテストしてソースを公開するためのものです。
そして、それはすべて非常にうまく機能します.1つのことを除けば、依存関係がPROJECT_Aで推移的ではないと宣言しているため、pomをリポジトリにプッシュすると、それらの依存関係がスコープコンパイルにリストされます. したがって、依存関係として PROJECT_A を持つ他のプロジェクト (PROJECT_B) には、PROJECT_A のすべての推移的な依存関係も含まれます。私はそれをまったく望んでいません。 PROJECT_A。
スコープとマッピングで遊んでみましたが、意味がないので、そこで何をしているのか本当に理解していないようです。PROJECT_A を依存関係として含めるときに、ivy.xml で宣言された PROJECT_A の実際の依存関係のみが含まれるように、そのスキームを何らかの形で変更して、推移フラグが考慮されるようにしたいと思います。
もう1つ、私はそのような.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>