From efdb99f8cecc4afb592afad79c761081d5d5cf22 Mon Sep 17 00:00:00 2001 From: lee <4766465@qq.com> Date: Wed, 18 Dec 2024 13:27:00 +0800 Subject: [PATCH] init --- system-test/pom.xml | 36 ++++++++++++++++++++++++++++++++++++ 1 files changed, 36 insertions(+), 0 deletions(-) diff --git a/system-test/pom.xml b/system-test/pom.xml new file mode 100644 index 0000000..d3e022d --- /dev/null +++ b/system-test/pom.xml @@ -0,0 +1,36 @@ +<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + <parent> + <artifactId>yami-shop</artifactId> + <groupId>com.yami.shop</groupId> + <version>0.0.1-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + + <artifactId>system-test</artifactId> + <packaging>jar</packaging> + <name>system-test</name> + <description>用于做系统测试的模块</description> + <dependencies> + + <dependency> + <groupId>com.yami.shop</groupId> + <artifactId>yami-shop-api</artifactId> + <version>0.0.1-SNAPSHOT</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>com.yami.shop</groupId> + <artifactId>yami-shop-multishop</artifactId> + <version>0.0.1-SNAPSHOT</version> + <scope>compile</scope> + </dependency> +<!-- <dependency>--> +<!-- <groupId>org.testng</groupId>--> +<!-- <artifactId>testng</artifactId>--> +<!-- <version>6.14.3</version>--> +<!-- </dependency>--> + </dependencies> + +</project> -- Gitblit v1.9.3