From 9d901b4215323c97a00a068cd962f5c9c04dadfa Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期四, 04 九月 2025 10:15:09 +0800
Subject: [PATCH] 前端
---
server/pom.xml | 92 ++++++++++++++--------------------------------
1 files changed, 28 insertions(+), 64 deletions(-)
diff --git a/server/pom.xml b/server/pom.xml
index 38b3e63..95f511c 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -7,10 +7,8 @@
<artifactId>jinkuai</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
-
<name>jinkuai</name>
<description></description>
-
<modules>
<module>admin</module>
<module>web</module>
@@ -22,7 +20,6 @@
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.5.RELEASE</version>
</parent>
-
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -39,35 +36,12 @@
<jjwt.version>0.9.1</jjwt.version>
<weixin-java-pay.version>4.1.0</weixin-java-pay.version>
</properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.azure.spring</groupId>
- <artifactId>spring-cloud-azure-dependencies</artifactId>
- <version>4.19.0</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
<dependencies>
<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
- <!-- <exclusions>
- <exclusion>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- </exclusion>
- </exclusions> -->
</dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- <scope>provided</scope>
- </dependency>
- <!-- Redis -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
@@ -121,6 +95,20 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
+ <!--鍗庝负OBS -->
+ <dependency>
+ <groupId>com.huaweicloud</groupId>
+ <artifactId>esdk-obs-java-bundle</artifactId>
+ <version>3.23.9</version>
+ </dependency>
+
+ <!--鍗庝负OBS -->
+ <dependency>
+ <groupId>com.huaweicloud</groupId>
+ <artifactId>esdk-obs-java</artifactId>
+ <version>3.19.7</version>
+ </dependency>
+
<!-- 杩炴帴姹� -->
<dependency>
<groupId>com.alibaba</groupId>
@@ -247,8 +235,21 @@
<dependency>
<groupId>com.github.wechatpay-apiv3</groupId>
<artifactId>wechatpay-java</artifactId>
- <version>0.2.12</version>
+ <version>0.2.15</version>
</dependency>
+
+ <dependency>
+ <groupId>com.aliyun</groupId>
+ <artifactId>aliyun-java-sdk-core</artifactId>
+ <version>3.5.0</version>
+ </dependency>
+
+ <dependency>
+ <groupId>com.aliyun</groupId>
+ <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
+ <version>1.1.0</version>
+ </dependency>
+
<!-- <dependency>
<groupId>com.azure.spring</groupId>
<artifactId>spring-cloud-azure-starter-storage-blob</artifactId>
@@ -259,7 +260,6 @@
<version>12.14.1</version>
</dependency>
</dependencies>
-
<build>
<resources>
<resource>
@@ -270,48 +270,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <configuration>
- <delimiters>
- <delimiter>@</delimiter>
- </delimiters>
- <useDefaultDelimiters>false</useDefaultDelimiters>
- </configuration>
- </plugin>
</plugins>
-
</build>
-
- <profiles>
- <profile>
- <id>dev</id>
- <properties>
- <spring.active>dev</spring.active>
- </properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- <profile>
- <id>test</id>
- <properties>
- <spring.active>test</spring.active>
- </properties>
- </profile>
- <profile>
- <id>pro</id>
- <properties>
- <spring.active>pro</spring.active>
- </properties>
- </profile>
- </profiles>
</project>
--
Gitblit v1.9.3