<?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>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.1.2.RELEASE</version>
|
</parent>
|
<groupId>com.lxzn</groupId>
|
<artifactId>nc-base-admin</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
<packaging>jar</packaging>
|
<properties>
|
<java.version>1.8</java.version>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<!--<mssql-jdbc.version>6.4.0.jre8</mssql-jdbc.version>-->
|
<!--<mysql-connector-java.version>8.0.13</mysql-connector-java.version>-->
|
<commons-fileupload.version>1.3.3</commons-fileupload.version>
|
<commons-codec.version>1.10</commons-codec.version>
|
<commons-lang3.version>3.9</commons-lang3.version>
|
<lombok.version>1.18.8</lombok.version>
|
<springfox-swagger.version>2.9.2</springfox-swagger.version>
|
<fastjson.version>1.2.62</fastjson.version>
|
<zip4j.version>1.3.2</zip4j.version>
|
<druid-spring-boot-starter.version>1.1.10</druid-spring-boot-starter.version>
|
<orika-core.version>1.4.6</orika-core.version>
|
|
<fastdfs-client-java.version>1.27.0.0</fastdfs-client-java.version>
|
</properties>
|
|
<dependencies>
|
<!--spring boot 开始-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-security</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.security.oauth</groupId>
|
<artifactId>spring-security-oauth2</artifactId>
|
<version>2.3.3.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-jwt</artifactId>
|
<version>1.0.9.RELEASE</version>
|
</dependency>
|
<!-- MockMultipartFile -->
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-test</artifactId>
|
</dependency>
|
<!-- websocket -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
</dependency>
|
<!--spring boot 结束-->
|
<!--持久层 数据库 连接池 开始-->
|
|
<!-- mysql8.0数据库 -->
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>8.0.33</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-compress</artifactId>
|
<version>1.24.0</version>
|
</dependency>
|
|
|
<!-- 2.2版本的persistence-->
|
<dependency>
|
<groupId>javax.persistence</groupId>
|
<artifactId>javax.persistence-api</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.hibernate</groupId>
|
<artifactId>hibernate-core</artifactId>
|
<version>5.6.7.Final</version>
|
<exclusions>
|
<exclusion>
|
<groupId>commons-collections</groupId>
|
<artifactId>commons-collections</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<!-- <dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>${mysql-connector-java.version}</version>
|
</dependency>-->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>${druid-spring-boot-starter.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.1.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<!--持久层 数据库 连接池 结束-->
|
|
<!--swagger2 开始-->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>${springfox-swagger.version}</version>
|
<exclusions>
|
<exclusion>
|
<groupId>org.reflections</groupId>
|
<artifactId>reflections</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>${springfox-swagger.version}</version>
|
</dependency>
|
<!--swagger2 开始-->
|
|
<!--activiti 流程引擎-->
|
<dependency>
|
<groupId>org.activiti</groupId>
|
<artifactId>activiti-spring-boot-starter-basic</artifactId>
|
<version>6.0.0</version>
|
<exclusions>
|
<exclusion>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>com.sun.mail</groupId>
|
<artifactId>javax.mail</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<!--activiti 流程引擎-->
|
|
<!-- 工具包开始-->
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>javax.servlet-api</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>${lombok.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>${commons-lang3.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-fileupload</groupId>
|
<artifactId>commons-fileupload</artifactId>
|
<version>${commons-fileupload.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-codec</groupId>
|
<artifactId>commons-codec</artifactId>
|
<version>${commons-codec.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>ma.glasnost.orika</groupId>
|
<artifactId>orika-core</artifactId>
|
<version>${orika-core.version}</version>
|
</dependency>
|
|
<!-- webService-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
</dependency>
|
|
<!-- CXF webservice -->
|
<dependency>
|
<groupId>org.apache.cxf</groupId>
|
<artifactId>cxf-spring-boot-starter-jaxws</artifactId>
|
<version>3.2.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.cxf</groupId>
|
<artifactId>cxf-rt-transports-http</artifactId>
|
<version>3.2.1</version>
|
</dependency>
|
|
|
<!--JWT-->
|
<dependency>
|
<groupId>com.auth0</groupId>
|
<artifactId>java-jwt</artifactId>
|
<version>3.4.0</version>
|
</dependency>
|
<dependency>
|
<groupId>ma.glasnost.orika</groupId>
|
<artifactId>orika-core</artifactId>
|
<version>${orika-core.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.graylog2</groupId>
|
<artifactId>syslog4j</artifactId>
|
<version>0.9.60</version>
|
</dependency>
|
|
<!--文件压缩工具-->
|
<dependency>
|
<groupId>net.lingala.zip4j</groupId>
|
<artifactId>zip4j</artifactId>
|
<version>1.3.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>javax.mail</groupId>
|
<artifactId>mail</artifactId>
|
<version>1.4.7</version>
|
<exclusions>
|
<exclusion>
|
<groupId>javax.activation</groupId>
|
<artifactId>activation</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<!--http-->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.10</version>
|
</dependency>
|
<!--SM3算法-->
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-jdk15on</artifactId>
|
<version>1.57</version>
|
</dependency>
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-ext-jdk15on</artifactId>
|
<version>1.57</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpcore</artifactId>
|
<version>4.4.12</version>
|
</dependency>
|
<!--jeecg autopoi-web-->
|
<dependency>
|
<groupId>org.jeecgframework</groupId>
|
<artifactId>autopoi-web</artifactId>
|
<version>1.3.2</version>
|
</dependency>
|
<!-- 工具包结束-->
|
<dependency>
|
<groupId>org.graylog2</groupId>
|
<artifactId>syslog4j</artifactId>
|
<version>0.9.60</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-jdk15to18</artifactId>
|
<version>1.64</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>5.8.5</version>
|
</dependency>
|
|
|
</dependencies>
|
|
<build>
|
<finalName>${project.artifactId}</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
<configuration>
|
<skipTests>true</skipTests>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|