にモジュールに依存します。問題がある:私はは、私はMavenプロジェクトの次のツリー構造を持っているのmaven
Root/pom.xml
<modules>
<module>moduleA</module>
</modules>
でポンポンとXMLのモジュールとしてModuleAを定義した場合、私は
Root/pom.xml
<dependencies>
<dependency>
<groupId>Root</groupId>
<artifactId>moduleA</artifactId>
<version>1.0</version>
<scope>install</scope>
</dependency>
</dependencies>
と根の依存関係としてそれを宣言することはできません
これは、勾配が巡回するためですこのように:
[INFO] The projects in the reactor contain a cyclic reference: Edge between 'Vertex{label='Root:moduleA'}' and 'Vertex{label='Root:moduleA'}' introduces to cycle in the graph Root:moduleA --> Root:moduleA
質問です:ルートポンポンと上で実行install
ターゲットで構築されたmoduleAを維持する方法のexec-のmaven-pluginのでmoduleAのクラスを実行する能力を持っていますか?