2019-02-23 00:41:24 +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-11-26 18:40:07 +08:00
|
|
|
<artifactId>trade-service-project</artifactId>
|
2019-02-23 00:41:24 +08:00
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-11-26 18:40:07 +08:00
|
|
|
<artifactId>trade-service-integration-test</artifactId>
|
2019-02-23 00:41:24 +08:00
|
|
|
|
2019-03-17 17:05:01 +08:00
|
|
|
<dependencies>
|
2019-03-23 12:14:49 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
2020-11-26 18:40:07 +08:00
|
|
|
<artifactId>trade-service-app</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2019-04-15 23:33:56 +08:00
|
|
|
</dependency>
|
2019-04-11 00:44:46 +08:00
|
|
|
|
2020-11-26 18:40:07 +08:00
|
|
|
<!-- Test 相关 -->
|
2019-04-08 23:38:08 +08:00
|
|
|
<dependency>
|
2020-11-26 18:40:07 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
2019-04-06 23:29:12 +08:00
|
|
|
</dependency>
|
2019-03-17 17:05:01 +08:00
|
|
|
</dependencies>
|
2020-08-06 21:13:21 +08:00
|
|
|
|
2019-04-11 00:44:46 +08:00
|
|
|
</project>
|