Fetch the repository succeeded.
This action will force synchronization from 成恒/tmall-server-repo, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
<?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>
<!-- 父级项目 -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<!-- 当前项目参数 -->
<groupId>cn.tedu</groupId>
<artifactId>tmall-server-repo</artifactId>
<version>3.0</version>
<!-- 打包方式 -->
<!-- pom:此项目仅用于整合子项目,本身并不实现其它功能性设计 -->
<packaging>pom</packaging>
<!-- 模块配置:包含哪些子级模块项目 -->
<!-- 在对各子级模块项目进行打包(package)之前,需要先对当前项目(根级项目)打包 -->
<!-- 在当前项目(根级项目)打包时,需要先删除以下modules标签(含子级) -->
<!-- 注意:使用IntelliJ IDEA时,如果删除以下标签,会提示是否删除各子模块项目,务必选择【No】 -->
<!-- 当前项目(根级项目)打包完毕后,恢复以下modules标签(含子级) -->
<modules>
<module>tmall-common</module>
<module>tmall-basic</module>
<module>tmall-attachment</module>
<module>tmall-passport</module>
<module>tmall-admin</module>
<module>tmall-front</module>
</modules>
<!-- 属性配置 -->
<properties>
<java.version>1.8</java.version>
<tmall-version>3.0</tmall-version>
<spring-boot.version>2.5.0</spring-boot.version>
<mybatis-spring-boot.version>2.2.2</mybatis-spring-boot.version>
<mybatis-plus-spring-boot.version>3.3.0</mybatis-plus-spring-boot.version>
<pagehelper-spring-boot.version>1.3.0</pagehelper-spring-boot.version>
<druid-spring-boot.version>1.2.16</druid-spring-boot.version>
<mysql.version>8.0.27</mysql.version>
<knife4j-spring-boot.version>2.0.9</knife4j-spring-boot.version>
<lombok.version>1.18.20</lombok.version>
<jjwt.version>0.9.1</jjwt.version>
<fastjson.version>1.2.75</fastjson.version>
<hutool.version>5.8.15</hutool.version>
</properties>
<!-- 依赖项:此处配置的依赖项,各子级模块项目均会直接继承得到 -->
<dependencies>
<!-- 当使用JDK8时,不需要以下依赖项,从JDK11开始的版本不内置以下依赖项的包 -->
<!-- 添加此依赖项主要为了避免更换JDK环境可能出错的问题 -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
</dependencies>
<!-- 管理当前项目使用的依赖项,注意:并不代码各项目添加了此处配置的所有依赖项 -->
<dependencyManagement>
<dependencies>
<!-- 当前项目的公共模块 -->
<dependency>
<groupId>cn.tedu</groupId>
<artifactId>tmall-common</artifactId>
<version>${tmall-version}</version>
</dependency>
<!-- Spring Boot支持Spring MVC的依赖项 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<!-- Spring Boot支持Spring Validation的依赖项,用于检查参数的基本有效性 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<!-- Spring Boot支持Spring Security的依赖项,用于处理认证与授权 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<!-- Spring Boot支持AOP编程 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<!-- Spring Boot支持Redis编程 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<!-- Spring Boot支持elasticsearch编程-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<!-- Mybatis整合Spring Boot的依赖项 -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>${mybatis-spring-boot.version}</version>
</dependency>
<!-- Mybatis Plus整合Spring Boot的依赖项 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis-plus-spring-boot.version}</version>
</dependency>
<!-- 基于MyBatis或MyBatis Plus的分页查询框架 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>${pagehelper-spring-boot.version}</version>
</dependency>
<!-- Alibaba Druid数据库连接池 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>${druid-spring-boot.version}</version>
</dependency>
<!-- MySQL的依赖项 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<!-- Knife4j Spring Boot:在线API文档 -->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-boot-starter</artifactId>
<version>${knife4j-spring-boot.version}</version>
</dependency>
<!-- Lombok的依赖项,主要用于简化POJO类的编写 -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<!-- JJWT(Java JWT) -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>${jjwt.version}</version>
</dependency>
<!-- fastjson:实现对象与JSON的相互转换 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<!-- hutool:小工具集合 -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
<!-- Spring Boot测试框架的依赖项 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring-boot.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。