我的应用程序中有两个模块和一个父模块。 - 父母 - 模块A(带有classA1和classA2) - 模块B(具有classB1和classB2)
我需要在模块B中使用classA1& 2,在模块A中使用classB1& 2。 我知道想要的是一个周期性的例外,但我怎样才能尝试做我想要的......
parent: pom.xml
<modules>
<module>../moduleA</module>
<module>../moduleB</module>
</modules>
moduleA: pom.xml
<dependencies>
<dependency>
<groupId>com.test</groupId>
<artifactId>moduleB</artifactId>
</dependency>
</dependencies>
moduleB: pom.xml
<dependencies>
<dependency>
<groupId>com.test</groupId>
<artifactId>moduleA</artifactId>
</dependency>
</dependencies>
感谢您的帮助
答案 0 :(得分:0)
您始终可以创建包含这两个类的第三个模块,并在两个模块中使用它。