|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<!-- Inherit defaults from Spring Boot -->
|
|
|
|
<modules>
|
|
|
|
<module>waynboot-common</module>
|
|
|
|
<module>waynboot-admin-api</module>
|
|
|
|
<module>waynboot-mobile-api</module>
|
|
|
|
<module>waynboot-message-consumer</module>
|
|
|
|
<module>waynboot-message-core</module>
|
|
|
|
<module>waynboot-data</module>
|
|
|
|
<module>waynboot-monitor</module>
|
|
|
|
<module>waynboot-job</module>
|
|
|
|
</modules>
|
|
|
|
<groupId>com.wayn</groupId>
|
|
|
|
<artifactId>waynboot-mall</artifactId>
|
|
|
|
<version>1.3.0</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>waynboot</name>
|
|
|
|
<description>waynboot mall商城</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<java.version>17</java.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
|
|
|
<spring-boot.version>3.1.0</spring-boot.version>
|
|
|
|
<mysql.connector.java.version>8.0.30</mysql.connector.java.version>
|
|
|
|
<lettuce.version>6.2.3.RELEASE</lettuce.version>
|
|
|
|
<elasticsearch.version>7.14.0</elasticsearch.version>
|
|
|
|
<mybatis-plus.version>3.5.3.2</mybatis-plus.version>
|
|
|
|
<druid.version>1.2.16</druid.version>
|
|
|
|
<lombok.version>1.18.26</lombok.version>
|
|
|
|
<commons.io.version>2.11.0</commons.io.version>
|
|
|
|
<commons.collections.version>4.4</commons.collections.version>
|
|
|
|
<commons.fileupload.version>1.5</commons.fileupload.version>
|
|
|
|
<commons-lang3.version>3.12.0</commons-lang3.version>
|
|
|
|
<fastjson.version>2.0.25</fastjson.version>
|
|
|
|
<easy-captcha.version>1.6.2</easy-captcha.version>
|
|
|
|
<jwt.version>4.3.0</jwt.version>
|
|
|
|
<qiniu.version>7.12.1</qiniu.version>
|
|
|
|
<mail.version>2.0.1</mail.version>
|
|
|
|
<spring-boot-admin.version>3.1.0</spring-boot-admin.version>
|
|
|
|
<xxl-job.version>2.3.1</xxl-job.version>
|
|
|
|
<hutool.version>5.8.18</hutool.version>
|
|
|
|
<easyexcel.version>3.2.1</easyexcel.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.micrometer</groupId>
|
|
|
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.mweirauch</groupId>
|
|
|
|
<artifactId>micrometer-jvm-extras</artifactId>
|
|
|
|
<version>0.2.2</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<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.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.lettuce/lettuce-core -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.lettuce</groupId>
|
|
|
|
<artifactId>lettuce-core</artifactId>
|
|
|
|
<version>${lettuce.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
<version>${mybatis-plus.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 阿里数据库连接池 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
<version>${druid.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>${mysql.connector.java.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Apache工具组件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>${commons-lang3.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Apache 集合工具组件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
<version>${commons.collections.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 验证码 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.whvcse</groupId>
|
|
|
|
<artifactId>easy-captcha</artifactId>
|
|
|
|
<version>${easy-captcha.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 文件上传工具类 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
<version>${commons.fileupload.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- jwt验证 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.auth0</groupId>
|
|
|
|
<artifactId>java-jwt</artifactId>
|
|
|
|
<version>${jwt.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 阿里JSON解析器 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
|
|
<artifactId>fastjson2</artifactId>
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 七牛云 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.qiniu</groupId>
|
|
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
|
|
|
<version>${qiniu.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
<artifactId>jakarta.mail</artifactId>
|
|
|
|
<version>${mail.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 分布式任务调度 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.xuxueli</groupId>
|
|
|
|
<artifactId>xxl-job-core</artifactId>
|
|
|
|
<version>${xxl-job.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
<version>${easyexcel.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
<version>${elasticsearch.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
|
|
<artifactId>elasticsearch-rest-client</artifactId>
|
|
|
|
<version>${elasticsearch.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
|
|
<artifactId>elasticsearch-rest-high-level-client</artifactId>
|
|
|
|
<version>${elasticsearch.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>public</id>
|
|
|
|
<name>aliyun nexus</name>
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>public</id>
|
|
|
|
<name>aliyun nexus</name>
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</pluginRepository>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-snapshots</id>
|
|
|
|
<url>https://repo.spring.io/snapshot</url>
|
|
|
|
</pluginRepository>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-milestones</id>
|
|
|
|
<url>https://repo.spring.io/milestone</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
<compilerArgs>
|
|
|
|
<compilerArg>-parameters</compilerArg>
|
|
|
|
</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|