self_example/Big_data_example/parent/pom.xml

35 lines
1.0 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.atguigu.maven</groupId>
<artifactId>parent</artifactId>
<version>1.0-SNAPSHOT</version>
<!--父类只打包成pom-->
<packaging>pom</packaging>
<!--统一管理依赖的版本号-->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!--实现聚合-->
<modules>
<module>../Hello_new</module>
<module>../HelloFriend</module>
<module>../MakeFriend</module>
</modules>
</project>