|
|
|
|
|
<?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 https://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.7.11</version>
|
|
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<groupId>com.example</groupId>
|
|
|
|
|
|
<artifactId>devProjectJt</artifactId>
|
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
<!--<packaging>jar</packaging>-->
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<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>
|
|
|
|
|
|
<!--websocket -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- lombok -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 外置依赖-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
|
<version>4.0.1</version>
|
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 添加MySQL数据库驱动 -->
|
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
|
<version>8.0.23</version>
|
|
|
|
|
|
</dependency>-->
|
|
|
|
|
|
<!-- oracle驱动-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.oracle</groupId>
|
|
|
|
|
|
<artifactId>ojdbc6</artifactId>
|
|
|
|
|
|
<version>11.2.0.3</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 引入 japidoc 接口文档说明-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.github.yedaxia</groupId>
|
|
|
|
|
|
<artifactId>japidocs</artifactId>
|
|
|
|
|
|
<version>1.4.4</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
|
<version>3.5.3.1</version>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 数据库链接包-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
|
|
|
|
|
<version>3.5.3.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 复合主键-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.jeffreyning</groupId>
|
|
|
|
|
|
<artifactId>mybatisplus-plus</artifactId>
|
|
|
|
|
|
<version>1.7.3-RELEASE</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.microsoft</groupId>
|
|
|
|
|
|
<artifactId>sqljdbc4</artifactId>
|
|
|
|
|
|
<version>3.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--JWT鉴权-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.auth0</groupId>
|
|
|
|
|
|
<artifactId>java-jwt</artifactId>
|
|
|
|
|
|
<version>4.3.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 密码加密-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.enc</groupId>
|
|
|
|
|
|
<artifactId>EndPassJava</artifactId>
|
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--spring-session-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
|
|
<artifactId>spring-session-data-redis</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
|
|
<artifactId>spring-session-jdbc</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
|
<version>2.0.25</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.dm</groupId>
|
|
|
|
|
|
<artifactId>DmJdbcDriver18</artifactId>
|
|
|
|
|
|
<version>1.8.0</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--工具类 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
|
<version>5.8.25</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.hibernate.validator</groupId>
|
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
|
<version>6.2.0.Final</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
|
<groupId>org.apache.axis</groupId>
|
|
|
|
|
|
<artifactId>axis</artifactId>
|
|
|
|
|
|
<version>1.4</version>
|
|
|
|
|
|
</dependency>-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.tetragramato</groupId>
|
|
|
|
|
|
<artifactId>custom-spring-boot-resttemplate</artifactId>
|
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
|
<artifactId>cxf-spring-boot-starter-jaxws</artifactId>
|
|
|
|
|
|
<version>3.2.5</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-ws</artifactId>
|
|
|
|
|
|
<version>1.3.3.RELEASE</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>wsdl4j</groupId>
|
|
|
|
|
|
<artifactId>wsdl4j</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
|
<artifactId>spring-websocket</artifactId>
|
|
|
|
|
|
<version>5.3.27</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
|
|
<artifactId>tomcat-embed-websocket</artifactId>
|
|
|
|
|
|
<version>9.0.80</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--excel导出 -->
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
|
<version>3.3.4</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- goldenDB数据库的驱动-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>goldenDB</groupId>
|
|
|
|
|
|
<artifactId>gdb-mysql-connector</artifactId>
|
|
|
|
|
|
<version>5.1.46</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<finalName>devProjectJt</finalName>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<!--maven 支持的单元测试组件,需要搭配Junit使用 -->
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<testFailureIgnore>true</testFailureIgnore>
|
|
|
|
|
|
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
|
|
<!--目的是跳过这个插件配置,某则打成的jar包别的模块无法使用 -->
|
|
|
|
|
|
<skip>true</skip>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
<resources>
|
|
|
|
|
|
<resource>
|
|
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
|
|
<includes>
|
|
|
|
|
|
<include>**/*.xml</include>
|
|
|
|
|
|
</includes>
|
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
|
</resource>
|
|
|
|
|
|
<!--打包时去除配置文件-->
|
|
|
|
|
|
<resource>
|
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
|
<excludes>
|
|
|
|
|
|
<exclude>*.properties</exclude>
|
|
|
|
|
|
<!-- <exclude>static/**</exclude>
|
|
|
|
|
|
<exclude>excel/**</exclude>
|
|
|
|
|
|
<exclude>META-INF/spring.factories</exclude>-->
|
|
|
|
|
|
</excludes>
|
|
|
|
|
|
<includes>
|
|
|
|
|
|
<include>logback-spring.xml</include>
|
|
|
|
|
|
<include>static/**</include>
|
|
|
|
|
|
<include>excel/**</include>
|
|
|
|
|
|
<include>META-INF/spring.factories</include>
|
|
|
|
|
|
</includes>
|
|
|
|
|
|
</resource>
|
|
|
|
|
|
</resources>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|