32 lines
1018 B
XML
32 lines
1018 B
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>MakeFriend</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<!--scope标签决定了当前依赖的生效范围(main和test),如果不写就默认是compile-->
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
</project> |