From fb7ca62d2854c82ac6e0a551bf921dabe6ee7bbc Mon Sep 17 00:00:00 2001 From: feige <791364011@qq.com> Date: 星期二, 29 四月 2025 15:02:24 +0800 Subject: [PATCH] 增加了二维码接口 --- ruoyi-admin/pom.xml | 43 ++++++++++++++++++++++++++++++++++++------- 1 files changed, 36 insertions(+), 7 deletions(-) diff --git a/ruoyi-admin/pom.xml b/ruoyi-admin/pom.xml index e195acd..e9dc548 100644 --- a/ruoyi-admin/pom.xml +++ b/ruoyi-admin/pom.xml @@ -37,7 +37,7 @@ <version>1.6.2</version> </dependency> - <!-- Mysql椹卞姩鍖� --> + <!-- Mysql椹卞姩鍖� --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> @@ -72,6 +72,35 @@ <artifactId>spring-boot-starter-test</artifactId> </dependency> + <dependency> + <groupId>com.ruoyi</groupId> + <artifactId>ruoyi-common</artifactId> + </dependency> + + + + <dependency> + <groupId>cn.hutool</groupId> + <artifactId>hutool-all</artifactId> + <version>5.7.1</version> + </dependency> + <!-- 鑵捐浜� --> + <dependency> + <groupId>com.qcloud</groupId> + <artifactId>cos_api</artifactId> + <version>5.6.227</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> <build> @@ -91,15 +120,15 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-war-plugin</artifactId> - <version>3.1.0</version> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <version>3.1.0</version> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> <warName>${project.artifactId}</warName> - </configuration> - </plugin> + </configuration> + </plugin> </plugins> <finalName>${project.artifactId}</finalName> </build> -- Gitblit v1.9.1