163 lines
4.7 KiB
XML
163 lines
4.7 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">
|
|
<parent>
|
|
<artifactId>basepro-manager</artifactId>
|
|
<groupId>guo.ping.e3mall</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<relativePath>../e3-parent/pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>basepro-framework</artifactId>
|
|
<packaging>pom</packaging>
|
|
<description>
|
|
framework框架核心
|
|
</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>guo.ping.e3mall</groupId>
|
|
<artifactId>e3-common</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>guo.ping.e3mall</groupId>
|
|
<artifactId>basepro-manager-interface</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>guo.ping.e3mall</groupId>
|
|
<artifactId>basepro-manager-pojo</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>guo.ping.e3mall</groupId>
|
|
<artifactId>basepro-manager-service</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- SpringBoot Web容器 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringBoot 拦截器 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-autoconfigure</artifactId>
|
|
<version>1.2.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid</artifactId>
|
|
<version>1.1.14</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis</groupId>
|
|
<artifactId>mybatis</artifactId>
|
|
<version>3.4.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jdbc</artifactId>
|
|
<version>4.3.13.RELEASE</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjweaver</artifactId>
|
|
<version>1.8.14</version>
|
|
</dependency>
|
|
|
|
<!--阿里数据库连接池 -->
|
|
<!--<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
</dependency>-->
|
|
|
|
<!--验证码 -->
|
|
<dependency>
|
|
<groupId>com.github.penggle</groupId>
|
|
<artifactId>kaptcha</artifactId>
|
|
<version>2.3.2</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<groupId>javax.servlet</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- Shiro使用Srping框架 -->
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-spring</artifactId>
|
|
<version>1.4.1</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- Shiro使用EhCache缓存框架 -->
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-ehcache</artifactId>
|
|
<version>1.4.1</version>
|
|
</dependency>
|
|
|
|
<!-- thymeleaf模板引擎和shiro框架的整合 -->
|
|
<dependency>
|
|
<groupId>com.github.theborakompanioni</groupId>
|
|
<artifactId>thymeleaf-extras-shiro</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
|
|
<!-- 解析客户端操作系统、浏览器等 -->
|
|
<dependency>
|
|
<groupId>eu.bitwalker</groupId>
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
<version>1.19</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.crazycake</groupId>
|
|
<artifactId>shiro-redis</artifactId>
|
|
<version>2.4.2.1-RELEASE</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.axet</groupId>
|
|
<artifactId>kaptcha</artifactId>
|
|
<version>0.0.9</version>
|
|
</dependency>
|
|
<!-- 系统模块-->
|
|
|
|
|
|
<!-- 获取系统信息 -->
|
|
<dependency>
|
|
<groupId>com.github.oshi</groupId>
|
|
<artifactId>oshi-core</artifactId>
|
|
<version>3.9.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna-platform</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis</groupId>
|
|
<artifactId>mybatis-spring</artifactId>
|
|
<version>1.3.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |