2019-02-21 20:12:29 +08:00
|
|
|
<?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">
|
|
|
|
<parent>
|
2020-12-05 23:13:39 +08:00
|
|
|
<artifactId>system-service-project</artifactId>
|
2019-02-21 20:12:29 +08:00
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-12-05 23:13:39 +08:00
|
|
|
<artifactId>system-service-integration-test</artifactId>
|
2019-02-21 20:12:29 +08:00
|
|
|
|
2019-03-03 22:54:36 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
2020-12-05 23:13:39 +08:00
|
|
|
<artifactId>system-service-app</artifactId>
|
2019-03-03 22:54:36 +08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-12-05 23:13:39 +08:00
|
|
|
<!-- Test 相关 -->
|
2019-04-06 21:09:27 +08:00
|
|
|
<dependency>
|
2020-12-05 23:13:39 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
2019-04-06 21:31:03 +08:00
|
|
|
</dependency>
|
2019-03-03 22:54:36 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2019-04-06 21:09:27 +08:00
|
|
|
</project>
|