<?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>energy-management</artifactId>
|
<groupId>com.dingzhuo</groupId>
|
<version>1.0.0</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>parent</artifactId>
|
|
<dependencies>
|
|
<!-- SpringBoot 核心包 -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter</artifactId>
|
</dependency>
|
|
<!-- SpringBoot 测试 -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
|
<!-- SpringBoot 拦截器 -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>
|
|
<!-- SpringBoot Web容器 -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<!-- 排除Tomcat依赖 -->
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
</dependency>
|
|
<!-- spring-boot-devtools -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-devtools</artifactId>
|
<optional>true</optional> <!-- 表示依赖不会传递 -->
|
</dependency>
|
|
<!-- spring security 安全认证 -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-security</artifactId>
|
</dependency>
|
|
<!-- redis 缓存操作 -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
|
<!-- pool 对象池 -->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
</dependency>
|
|
<!-- PostgreSQL驱动包 -->
|
<dependency>
|
<groupId>org.postgresql</groupId>
|
<artifactId>postgresql</artifactId>
|
<scope>runtime</scope>
|
</dependency>
|
|
<!-- SpringBoot集成mybatis框架 -->
|
<dependency>
|
<groupId>org.mybatis.spring.boot</groupId>
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
<version>${mybatis.spring.boot.starter.version}</version>
|
</dependency>
|
|
<!-- pagehelper 分页插件 -->
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
<version>${pagehelper.spring.boot.starter.version}</version>
|
</dependency>
|
|
<!--阿里数据库连接池 -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>${druid.version}</version>
|
</dependency>
|
|
<!--常用工具类 -->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
</dependency>
|
|
<!--io常用工具类 -->
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>${commons.io.version}</version>
|
</dependency>
|
|
<!--文件上传工具类 -->
|
<dependency>
|
<groupId>commons-fileupload</groupId>
|
<artifactId>commons-fileupload</artifactId>
|
<version>${commons.fileupload.version}</version>
|
</dependency>
|
|
<!-- 解析客户端操作系统、浏览器等 -->
|
<dependency>
|
<groupId>eu.bitwalker</groupId>
|
<artifactId>UserAgentUtils</artifactId>
|
<version>${bitwalker.version}</version>
|
</dependency>
|
|
<!-- 阿里JSON解析器 -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
|
<!--Spring框架基本的核心工具-->
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-context-support</artifactId>
|
</dependency>
|
|
<!--Token生成与解析-->
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt</artifactId>
|
<version>${jwt.version}</version>
|
</dependency>
|
|
<!-- swagger2-->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>${swagger.version}</version>
|
<exclusions>
|
<exclusion>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-models</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
<version>1.5.21</version>
|
</dependency>
|
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-models</artifactId>
|
<version>1.5.21</version>
|
</dependency>
|
|
<!-- swagger2-UI-->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>swagger-bootstrap-ui</artifactId>
|
<version>1.6</version>
|
</dependency>
|
|
<!-- 获取系统信息 -->
|
<dependency>
|
<groupId>com.github.oshi</groupId>
|
<artifactId>oshi-core</artifactId>
|
<version>${oshi.version}</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>
|
<!-- xml解析包 -->
|
<dependency>
|
<groupId>org.dom4j</groupId>
|
<artifactId>dom4j</artifactId>
|
<version>2.0.0</version>
|
</dependency>
|
|
<!-- excel工具 -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<!--velocity代码生成使用模板 -->
|
<dependency>
|
<groupId>org.apache.velocity</groupId>
|
<artifactId>velocity</artifactId>
|
<version>${velocity.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>joda-time</groupId>
|
<artifactId>joda-time</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.influxdb</groupId>
|
<artifactId>influxdb-java</artifactId>
|
<exclusions>
|
<exclusion>
|
<artifactId>okhttp</artifactId>
|
<groupId>com.squareup.okhttp3</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>okio</artifactId>
|
<groupId>com.squareup.okio</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>com.squareup.okhttp3</groupId>
|
<artifactId>okhttp</artifactId>
|
<exclusions>
|
<exclusion>
|
<artifactId>kotlin-stdlib</artifactId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
<version>28.0-jre</version>
|
</dependency>
|
<dependency>
|
<groupId>com.jsoniter</groupId>
|
<artifactId>jsoniter</artifactId>
|
<version>0.9.23</version>
|
</dependency>
|
<dependency>
|
<groupId>org.jetbrains.kotlin</groupId>
|
<artifactId>kotlin-stdlib</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.fasterxml.jackson.module</groupId>
|
<artifactId>jackson-module-kotlin</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.eweb4j</groupId>
|
<artifactId>fel</artifactId>
|
<version>0.10</version>
|
<scope>system</scope>
|
<systemPath>${basedir}/lib/fel.jar</systemPath>
|
</dependency>
|
</dependencies>
|
</project>
|