2025-07-10 18:30:39 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>edu.whut</groupId>
|
|
|
|
<artifactId>pay-mall</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>pay-mall-infrastructure</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
2025-07-11 19:43:13 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.retrofit2</groupId>
|
|
|
|
<artifactId>retrofit</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.retrofit2</groupId>
|
|
|
|
<artifactId>converter-jackson</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.retrofit2</groupId>
|
|
|
|
<artifactId>adapter-rxjava2</artifactId>
|
|
|
|
</dependency>
|
2025-07-17 14:43:08 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
</dependency>
|
2025-07-15 14:38:02 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>edu.whut</groupId>
|
|
|
|
<artifactId>group-buying-sys-api</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2025-07-20 22:10:23 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
|
|
</dependency>
|
2025-08-07 16:10:02 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.dubbo</groupId>
|
|
|
|
<artifactId>dubbo-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- Nacos 注册中心扩展 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.dubbo</groupId>
|
|
|
|
<artifactId>dubbo-registry-nacos</artifactId>
|
|
|
|
</dependency>
|
2025-08-07 21:03:42 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
</dependency>
|
2025-07-10 18:30:39 +08:00
|
|
|
<!-- 系统模块 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>edu.whut</groupId>
|
|
|
|
<artifactId>pay-mall-domain</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>pay-mall-infrastructure</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-archetype-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>create-from-project</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|