From 5d7b65670282a4fad015e37d567cfa171b162052 Mon Sep 17 00:00:00 2001 From: huliguo <2023611923@qq.com> Date: 星期二, 20 五月 2025 12:25:19 +0800 Subject: [PATCH] 基础代码 --- pt-errand/pom.xml | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 48 insertions(+), 0 deletions(-) diff --git a/pt-errand/pom.xml b/pt-errand/pom.xml new file mode 100644 index 0000000..a2b665e --- /dev/null +++ b/pt-errand/pom.xml @@ -0,0 +1,48 @@ +<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/maven-v4_0_0.xsd"> + <parent> + <artifactId>kunming-daiban</artifactId> + <groupId>com.pt</groupId> + <version>3.8.9</version> + </parent> + + <groupId>com.pt</groupId> + <modelVersion>4.0.0</modelVersion> + <artifactId>pt-errand</artifactId> + + <description> + 业务模块 + </description> + + <dependencies> + <!--短信验证http--> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </dependency> + + <!-- Spring Boot WebSocket --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-websocket</artifactId> + </dependency> + + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk15on</artifactId> + <version>1.69</version> + </dependency> + + <!-- 通用工具--> + <dependency> + <groupId>com.pt</groupId> + <artifactId>pt-common</artifactId> + </dependency> + + <dependency> + <groupId>com.pt</groupId> + <artifactId>pt-system</artifactId> + </dependency> + + </dependencies> +</project> -- Gitblit v1.7.1