246 lines
10 KiB
XML
246 lines
10 KiB
XML
<?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>
|
|
|
|
<groupId>guo.ping.e3mall</groupId>
|
|
<artifactId>e3-parent</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<!--定义SpringBoot依赖父工程-->
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.0.4.RELEASE</version>
|
|
</parent>
|
|
|
|
<!-- 集中定义依赖版本号 -->
|
|
<properties>
|
|
<servlet-api.version>2.5</servlet-api.version>
|
|
<mysql.version>5.1.32</mysql.version>
|
|
<mybatis.spring.boot.starter.version>1.2.2</mybatis.spring.boot.starter.version>
|
|
<mybatis.paginator.version>1.2.15</mybatis.paginator.version>
|
|
<druid.version>1.0.9</druid.version>
|
|
<httpclient.version>4.3.5</httpclient.version>
|
|
<joda-time.version>2.5</joda-time.version>
|
|
<commons-lang3.version>3.7</commons-lang3.version>
|
|
<commons-io.version>1.3.2</commons-io.version>
|
|
<commons-net.version>3.3</commons-net.version>
|
|
<pagehelper.version>5.1.4</pagehelper.version>
|
|
<pagehelper-spring-boot-starte.version>1.2.5</pagehelper-spring-boot-starte.version>
|
|
<jsqlparser.version>0.9</jsqlparser.version>
|
|
<commons-fileupload.version>1.3.1</commons-fileupload.version>
|
|
<dubbo.spring.boot.starter.version>0.2.0</dubbo.spring.boot.starter.version>
|
|
<zookeeper.version>3.4.7</zookeeper.version>
|
|
<zk-client.version>0.1</zk-client.version>
|
|
<quartz.version>2.2.2</quartz.version>
|
|
<springboot.version>2.0.4.RELEASE</springboot.version>
|
|
<fastdfs.version>1.27</fastdfs.version>
|
|
<shiro.version>1.4.1</shiro.version>
|
|
<mybatisplus.version>3.0.7.1</mybatisplus.version>
|
|
<mybatisplus.spring.boot.version>1.0.5</mybatisplus.spring.boot.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.mybatis</groupId>
|
|
<artifactId>mybatis-spring</artifactId>
|
|
<version>1.3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis</groupId>
|
|
<artifactId>mybatis</artifactId>
|
|
<version>3.4.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus</artifactId>
|
|
<version>${mybatisplus.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatisplus-spring-boot-starter</artifactId>
|
|
<version>${mybatisplus.spring.boot.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.ibatis</groupId>
|
|
<artifactId>ibatis-core</artifactId>
|
|
<version>3.0</version>
|
|
</dependency>
|
|
<!-- 时间操作组件 -->
|
|
<dependency>
|
|
<groupId>joda-time</groupId>
|
|
<artifactId>joda-time</artifactId>
|
|
<version>${joda-time.version}</version>
|
|
</dependency>
|
|
<!-- Apache工具组件 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons-io.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-net</groupId>
|
|
<artifactId>commons-net</artifactId>
|
|
<version>${commons-net.version}</version>
|
|
</dependency>
|
|
<!--servlet-->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>${servlet-api.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- httpclient -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>${httpclient.version}</version>
|
|
</dependency>
|
|
<!-- quartz任务调度框架 -->
|
|
<dependency>
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
<artifactId>quartz</artifactId>
|
|
<version>${quartz.version}</version>
|
|
</dependency>
|
|
<!-- Mybatis -->
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>${mybatis.spring.boot.starter.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.miemiedev</groupId>
|
|
<artifactId>mybatis-paginator</artifactId>
|
|
<version>${mybatis.paginator.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper</artifactId>
|
|
<version>${pagehelper.version}</version>
|
|
</dependency>
|
|
|
|
<!--<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>${pagehelper-spring-boot-starte.version}</version>
|
|
</dependency>-->
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
|
|
<version>${pagehelper-spring-boot-starte.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>${pagehelper-spring-boot-starte.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-autoconfigure</artifactId>
|
|
<version>1.2.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.jsqlparser</groupId>
|
|
<artifactId>jsqlparser</artifactId>
|
|
<version>${jsqlparser.version}</version>
|
|
</dependency>
|
|
<!-- MySql -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>${mysql.version}</version>
|
|
</dependency>
|
|
<!-- 连接池 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid</artifactId>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
<!-- 文件上传组件 -->
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>${commons-fileupload.version}</version>
|
|
</dependency>
|
|
<!--fastdfs-->
|
|
<dependency>
|
|
<groupId>cn.bestwu</groupId>
|
|
<artifactId>fastdfs-client-java</artifactId>
|
|
<version>${fastdfs.version}</version>
|
|
</dependency>
|
|
<!--Dubbo-->
|
|
<dependency>
|
|
<groupId>com.alibaba.boot</groupId>
|
|
<artifactId>dubbo-spring-boot-starter</artifactId>
|
|
<version>${dubbo.spring.boot.starter.version}</version>
|
|
</dependency>
|
|
<!--zookeeper-->
|
|
<dependency>
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
<artifactId>zookeeper</artifactId>
|
|
<version>${zookeeper.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.sgroschupf</groupId>
|
|
<artifactId>zkclient</artifactId>
|
|
<version>${zk-client.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
<version>5.0.8.RELEASE</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context-support</artifactId>
|
|
<version>5.1.3.RELEASE</version>
|
|
</dependency>
|
|
<!--Shiro核心框架 -->
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-core</artifactId>
|
|
<version>${shiro.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Shiro使用Srping框架 -->
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-spring</artifactId>
|
|
<version>${shiro.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Shiro使用EhCache缓存框架 -->
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-ehcache</artifactId>
|
|
<version>${shiro.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-web</artifactId>
|
|
<version>${shiro.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>eu.bitwalker</groupId>
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
<version>1.19</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</artifactId>
|
|
<version>1.19</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project> |