|
|
<?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>sale</artifactId>
|
|
|
<groupId>com.glxp</groupId>
|
|
|
<version>0.0.1</version>
|
|
|
</parent>
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
<packaging>war</packaging>
|
|
|
<artifactId>api-admin</artifactId>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<!--引入公共模块,版本继承父级-->
|
|
|
<dependency>
|
|
|
<groupId>com.glxp</groupId>
|
|
|
<artifactId>api-common</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
<version>3.1.0</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
<!--让配置文件有提示-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
|
|
|
<!--AOP拦截-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!--Redis-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!--热启动-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
|
|
|
<!--数据库相关-->
|
|
|
<!--MySQL-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
<version>8.0.21</version>
|
|
|
<scope>runtime</scope>
|
|
|
</dependency>
|
|
|
<!--连接池-->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
<version>1.1.10</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>com.anthony.ali</groupId>-->
|
|
|
<!--<artifactId>alicode</artifactId>-->
|
|
|
<!--<version>1.0</version>-->
|
|
|
<!--</dependency>-->
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>com.anthony.ali</groupId>-->
|
|
|
<!--<artifactId>alicode2</artifactId>-->
|
|
|
<!--<version>1.0</version>-->
|
|
|
<!--</dependency>-->
|
|
|
<!--mybatis -->
|
|
|
<!-- <dependency>-->
|
|
|
<!-- <groupId>org.mybatis.spring.boot</groupId>-->
|
|
|
<!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
|
|
|
<!-- <version>1.3.2</version>-->
|
|
|
<!-- </dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>com.itfsw</groupId>
|
|
|
<artifactId>mybatis-generator-plugin</artifactId>
|
|
|
<version>1.3.8</version>
|
|
|
</dependency>
|
|
|
<!--分页插件-->
|
|
|
<dependency>
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
<artifactId>pagehelper</artifactId>
|
|
|
<version>5.1.7</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--自动生成 GET SET-->
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
|
|
|
<!--JWT-->
|
|
|
<dependency>
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
<version>0.9.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--Json 操作-->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- PDF生成 -->
|
|
|
<dependency>
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
<artifactId>itextpdf</artifactId>
|
|
|
<version>5.5.10</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
<artifactId>itext-asian</artifactId>
|
|
|
<version>5.2.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--Hutool是一个小而全的Java工具类库-->
|
|
|
<dependency>
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
<version>5.7.9</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 二维码工具 考虑到Hutool的非强制依赖性,因此zxing需要用户自行引入 -->
|
|
|
<dependency>
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
<artifactId>core</artifactId>
|
|
|
<version>3.3.3</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
<artifactId>javase</artifactId>
|
|
|
<version>3.3.3</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<!--部署成war包时开启↓↓↓↓-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.tomcat</groupId>
|
|
|
<artifactId>tomcat-jdbc</artifactId>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
<!--部署成war包时开启↑↑↑↑-->
|
|
|
<!-- https://mvnrepository.com/artifact/org.olap4j/olap4j -->
|
|
|
<!-- https://mvnrepository.com/artifact/org.olap4j/olap4j -->
|
|
|
<!-- https://mvnrepository.com/artifact/org.olap4j/olap4j -->
|
|
|
<dependency>
|
|
|
<groupId>org.olap4j</groupId>
|
|
|
<artifactId>olap4j</artifactId>
|
|
|
<version>1.2.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
<version>2.3.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
<version>2.9.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
<artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
|
|
|
<version>1.2.5</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--解析excel-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi</artifactId>
|
|
|
<version>4.0.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
<version>4.0.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- jasperreports-dependency-begin -->
|
|
|
<!-- jasperreports-->
|
|
|
<!-- https://mvnrepository.com/artifact/net.sf.barcode4j/barcode4j -->
|
|
|
<!-- jasperreports相关 -->
|
|
|
<dependency>
|
|
|
<groupId>net.sf.barcode4j</groupId>
|
|
|
<artifactId>barcode4j</artifactId>
|
|
|
<version>2.1</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.olap4je</groupId>
|
|
|
<artifactId>olap4j</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
<artifactId>jasperreports</artifactId>
|
|
|
<version>6.5.1</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>com.lowagie</groupId>
|
|
|
<artifactId>itext</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
<artifactId>jasperreports-fonts</artifactId>
|
|
|
<version>6.0.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
<artifactId>itext-pdfa</artifactId>
|
|
|
<version>5.5.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>cn.lesper</groupId>
|
|
|
<artifactId>iTextAsian</artifactId>
|
|
|
<version>3.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-bridge -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
|
<artifactId>batik-bridge</artifactId>
|
|
|
<version>1.11</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-dom -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
|
<artifactId>batik-dom</artifactId>
|
|
|
<version>1.11</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.eclipse.birt.runtime.3_7_1</groupId>
|
|
|
<artifactId>com.lowagie.text</artifactId>
|
|
|
<version>2.1.7</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- jasperreports end-->
|
|
|
<!-- jasperreports-dependency-end -->
|
|
|
<dependency>
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
<version>3.10.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
<version>1.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--mybatis plus -->
|
|
|
<dependency>
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
<version>3.5.3</version>
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<finalName>SP_SYNC_SERVER</finalName>
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
</plugin>
|
|
|
<!-- 5、添加插件指定jdk -->
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<fork>true</fork><!-- 如果没有该项配置,肯呢个devtools不会起作用,即应用不会restart -->
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<skipTests>true</skipTests>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<source>11</source>
|
|
|
<target>11</target>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
|
</project>
|