2025-09-12 18:21:35 +08:00

107 lines
3.5 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>com.byhah</groupId>
<artifactId>cloud</artifactId>
<version>1.0.2-SNAPSHOT</version>
</parent>
<artifactId>cloud-admin</artifactId>
<name>website-admin</name>
<dependencies>
<!--<dependency>-->
<!-- <groupId>com.byhah.deploy</groupId>-->
<!-- <artifactId>byhah-deploy-basic-email</artifactId>-->
<!--</dependency>-->
<dependency>
<groupId>com.byhah.deploy</groupId>
<artifactId>byhah-deploy-basic-sms</artifactId>
<exclusions>
<exclusion>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.byhah.deploy</groupId>
<artifactId>byhah-deploy-basic-sse</artifactId>
</dependency>
<!--基础依赖-->
<dependency>
<groupId>com.byhah.deploy</groupId>
<artifactId>byhah-deploy-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.byhah.deploy</groupId>
<artifactId>byhah-deploy-starter-logging</artifactId>
</dependency>
<dependency>
<groupId>com.byhah.deploy</groupId>
<artifactId>byhah-deploy-starter-json</artifactId>
</dependency>
<dependency>
<groupId>com.byhah.deploy</groupId>
<artifactId>byhah-deploy-starter-redisson</artifactId>
</dependency>
<!--本地starter-->
<dependency>
<groupId>com.byhah</groupId>
<artifactId>cloud-starter-orm</artifactId>
</dependency>
<!-- beetl模板引擎 -->
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>beetl</artifactId>
</dependency>
<!--系统硬件信息-->
<dependency>
<groupId>com.github.oshi</groupId>
<artifactId>oshi-core</artifactId>
</dependency>
<!-- sa-token -->
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-spring-boot3-starter</artifactId>
</dependency>
<!-- sa-token 整合 redis 使用jackson序列化方式 -->
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-redisson-jackson</artifactId>
</dependency>
<!-- poi-tl -->
<dependency>
<groupId>com.deepoove</groupId>
<artifactId>poi-tl</artifactId>
<version>1.10.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
<build>
<finalName>${project.name}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>