You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
296 lines
11 KiB
XML
296 lines
11 KiB
XML
|
9 months ago
|
<?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>
|
||
|
|
<groupId>com.nmgs</groupId>
|
||
|
|
<artifactId>AggregationProgram</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<name>AggregationProgram</name>
|
||
|
|
<description>AggregationProgram</description>
|
||
|
|
<packaging>war</packaging>
|
||
|
|
<properties>
|
||
|
|
<java.version>1.8</java.version>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
|
<spring-boot.version>2.3.7.RELEASE</spring-boot.version>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
|
<version>2.2.13.RELEASE</version>
|
||
|
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- spring-boot-devtools -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-devtools</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</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>4.0.1</version>
|
||
|
|
<!-- <scope>provided</scope>-->
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
|
|
<version>3.5.2</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
||
|
|
<artifactId>ojdbc8</artifactId>
|
||
|
|
<scope>runtime</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>druid</artifactId>
|
||
|
|
<version>1.1.20</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<scope>runtime</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.microsoft</groupId>
|
||
|
|
<artifactId>sqljdbc4</artifactId>
|
||
|
|
<version>3.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
||
|
|
<version>1.1.10</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>log4j</groupId>-->
|
||
|
|
<!-- <artifactId>log4j</artifactId>-->
|
||
|
|
<!-- <version>1.2.17</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>org.junit.vintage</groupId>
|
||
|
|
<artifactId>junit-vintage-engine</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<!-- 密码加密-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.enc</groupId>
|
||
|
|
<artifactId>EndPassJava</artifactId>
|
||
|
|
<version>1.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 格式化对象,方便输出日志 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
<version>2.0.4</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-io</groupId>
|
||
|
|
<artifactId>commons-io</artifactId>
|
||
|
|
<version>2.6</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-lang3</artifactId>
|
||
|
|
<version>3.12.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-net</groupId>
|
||
|
|
<artifactId>commons-net</artifactId>
|
||
|
|
<version>3.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>joda-time</groupId>
|
||
|
|
<artifactId>joda-time</artifactId>
|
||
|
|
<version>2.10.13</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>dom4j</groupId>
|
||
|
|
<artifactId>dom4j</artifactId>
|
||
|
|
<version>1.6.1</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 通过HttpClient实现请求发送、接收文件 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpclient</artifactId>
|
||
|
|
<version>4.5.13</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpmime</artifactId>
|
||
|
|
<version>4.5.13</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.cxf</groupId>
|
||
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
||
|
|
<version>3.4.2</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- webservice接口-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.cxf</groupId>
|
||
|
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
||
|
|
<version>3.4.2</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>asm</artifactId>
|
||
|
|
<groupId>org.ow2.asm</groupId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
||
|
|
<artifactId>tomcat-embed-websocket</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.lmax</groupId>
|
||
|
|
<artifactId>disruptor</artifactId>
|
||
|
|
<version>3.4.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-redis</artifactId>
|
||
|
|
<version>1.4.7.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.session</groupId>
|
||
|
|
<artifactId>spring-session-data-redis</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!--JWT鉴权-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.auth0</groupId>
|
||
|
|
<artifactId>java-jwt</artifactId>
|
||
|
|
<version>4.3.0</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 通过HttpClient实现请求发送、接收文件 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpclient</artifactId>
|
||
|
|
<version>4.5.13</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpmime</artifactId>
|
||
|
|
<version>4.5.13</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.oracle.database.nls</groupId>
|
||
|
|
<artifactId>orai18n</artifactId>
|
||
|
|
<version>21.5.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- mybatisplus多表查询 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.yulichang</groupId>
|
||
|
|
<artifactId>mybatis-plus-join</artifactId>
|
||
|
|
<version>1.2.4</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
<dependencyManagement>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
||
|
|
<version>${spring-boot.version}</version>
|
||
|
|
<type>pom</type>
|
||
|
|
<scope>import</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</dependencyManagement>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<finalName>AggregationProgram</finalName>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
|
<!-- <configuration>-->
|
||
|
|
<!-- <packagingExcludes>-->
|
||
|
|
<!-- WEB-INF/classes/application.yml-->
|
||
|
|
<!-- WEB-INF\classes\application.yml-->
|
||
|
|
<!-- </packagingExcludes>-->
|
||
|
|
<!-- </configuration>-->
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.8.1</version>
|
||
|
|
<configuration>
|
||
|
|
<source>1.8</source>
|
||
|
|
<target>1.8</target>
|
||
|
|
<encoding>UTF-8</encoding>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
<version>2.3.7.RELEASE</version>
|
||
|
|
<configuration>
|
||
|
|
<mainClass>com.nmgs.AggregationProgramApplication</mainClass>
|
||
|
|
</configuration>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>repackage</id>
|
||
|
|
<goals>
|
||
|
|
<goal>repackage</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</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>
|
||
|
|
</excludes>
|
||
|
|
<!-- <includes>-->
|
||
|
|
<!-- <include>static/*.properties</include>-->
|
||
|
|
<!-- </includes>-->
|
||
|
|
</resource>
|
||
|
|
</resources>
|
||
|
|
|
||
|
|
</build>
|
||
|
|
</project>
|