在Maven中创建多模块项目时,不同模块之间可以通过依赖关系相互关联。以下是一些常见的方法:
在父模块的pom.xml文件中使用<modules>标签列出所有子模块,让Maven能够识别并构建这些子模块。<modules> <module>module1</module> <module>module2</module></modules>在子模块的pom.xml文件中,可以通过<dependencies>标签声明对其他模块的依赖关系。<dependencies> <dependency> <groupId>com.example</groupId> <artifactId>module1</artifactId> <version>1.0</version> </dependency></dependencies>如果需要在父模块中引用子模块中的类或资源文件,可以在父模块的pom.xml文件中使用<dependencyManagement>标签管理这些依赖。<dependencyManagement> <dependencies> <dependency> <groupId>com.example</groupId> <artifactId>module1</artifactId> <version>1.0</version> <scope>compile</scope> </dependency> </dependencies></dependencyManagement>通过以上方式,可以方便地管理多模块项目中各模块之间的依赖关系,使项目结构更加清晰和易于维护。


