You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
6.1 KiB
XML
148 lines
6.1 KiB
XML
|
5 days ago
|
<?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>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
|
<version>3.3.3</version>
|
||
|
|
</parent>
|
||
|
|
<groupId>yuxingshi</groupId>
|
||
|
|
<artifactId>yuxingshi-sms</artifactId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
<packaging>pom</packaging>
|
||
|
|
<modules>
|
||
|
|
<module>yuxingshi-sms-common</module>
|
||
|
|
<module>yuxingshi-sms-server</module>
|
||
|
|
</modules>
|
||
|
|
<properties>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
|
<java.version>17</java.version>
|
||
|
|
<maven.compiler.source>17</maven.compiler.source>
|
||
|
|
<maven.compiler.target>17</maven.compiler.target>
|
||
|
|
<!--依赖版本-->
|
||
|
|
<spring-boot.version>3.3.3</spring-boot.version>
|
||
|
|
<spring-cloud-alibaba.version>2023.0.1.2</spring-cloud-alibaba.version>
|
||
|
|
<spring-cloud.version>2023.0.3</spring-cloud.version>
|
||
|
|
<redisson.version>3.50.0</redisson.version>
|
||
|
|
<mybatis-plus.version>3.5.7</mybatis-plus.version>
|
||
|
|
<commons-collections4.version>4.4</commons-collections4.version>
|
||
|
|
<aliyun.oss.version>3.17.4</aliyun.oss.version>
|
||
|
|
<pagehelper.boot.version>2.0.0</pagehelper.boot.version>
|
||
|
|
<jwt.version>0.9.1</jwt.version>
|
||
|
|
<jaxb.version>2.3.0</jaxb.version>
|
||
|
|
<hutool.version>5.8.22</hutool.version>
|
||
|
|
<transmittable-thread-local.version>2.14.4</transmittable-thread-local.version>
|
||
|
|
<dysmsapi20170525.version>3.1.1</dysmsapi20170525.version>
|
||
|
|
<spring-retry.version>2.0.8</spring-retry.version>
|
||
|
|
<seata.version>1.5.2</seata.version>
|
||
|
|
<canal.version>1.2.1-RELEASE</canal.version>
|
||
|
|
<idworker-snowflake.version>1.0.0</idworker-snowflake.version>
|
||
|
|
<alipay.version>4.35.0.ALL</alipay.version>
|
||
|
|
<xxljiob.version>3.2.0</xxljiob.version>
|
||
|
|
<!--运行环境-->
|
||
|
|
<runenv>test</runenv>
|
||
|
|
<java.opts.default>-Xmx256m</java.opts.default>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencyManagement>
|
||
|
|
<dependencies>
|
||
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>easyexcel</artifactId>
|
||
|
|
<version>4.0.3</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- SpringBoot 依赖配置 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
||
|
|
<version>${spring-boot.version}</version>
|
||
|
|
<type>pom</type>
|
||
|
|
<scope>import</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-collections4</artifactId>
|
||
|
|
<version>${commons-collections4.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
||
|
|
<version>${mybatis-plus.version}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.pagehelper</groupId>
|
||
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
||
|
|
<version>${pagehelper.boot.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
|
<artifactId>jjwt</artifactId>
|
||
|
|
<version>${jwt.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.xml.bind</groupId>
|
||
|
|
<artifactId>jaxb-api</artifactId>
|
||
|
|
<version>${jaxb.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.hutool</groupId>
|
||
|
|
<artifactId>hutool-all</artifactId>
|
||
|
|
<version>${hutool.version}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>transmittable-thread-local</artifactId>
|
||
|
|
<version>${transmittable-thread-local.version}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.retry</groupId>
|
||
|
|
<artifactId>spring-retry</artifactId>
|
||
|
|
<version>${spring-retry.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>top.javatool</groupId>
|
||
|
|
<artifactId>canal-spring-boot-starter</artifactId>
|
||
|
|
<version>${canal.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.a3test.component</groupId>
|
||
|
|
<artifactId>idworker-snowflake</artifactId>
|
||
|
|
<version>${idworker-snowflake.version}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
</dependencyManagement>
|
||
|
|
<build>
|
||
|
|
<pluginManagement>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<skip>true</skip>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-install-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<skip>true</skip>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</pluginManagement>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|