self_example/Big_data_example/Hello_new/pom.xml

41 lines
1.2 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>
<!--实现继承-->
<parent>
<groupId>com.atguigu.maven</groupId>
<artifactId>parent</artifactId>
<version>1.0-SNAPSHOT</version>
<!--相对路径-->
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>com.atguigu.maven</groupId>
<artifactId>Hello_new</artifactId>
<version>1.0-SNAPSHOT</version>
<!--添加依赖-->
<dependencies>
<!--Junit依赖坐标-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>RELEASE</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>