<?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.2.7.RELEASE</version>
|
<relativePath/>
|
</parent>
|
<groupId>com.terra</groupId>
|
<artifactId>proxymanager</artifactId>
|
<version>0.0.1</version>
|
<packaging>war</packaging>
|
<name>proxymanager</name>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<swagger.version>2.7.0</swagger.version>
|
<ehcache.version>3.3.1</ehcache.version>
|
<poi.version>3.16</poi.version>
|
<ooxml.version>1.3</ooxml.version>
|
<pinyin4j.version>2.5.1</pinyin4j.version>
|
<maven-jar-plugin.version>3.0.0</maven-jar-plugin.version>
|
</properties>
|
|
<dependencies>
|
<!--排除内置tomcat-->
|
<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>
|
<!--添加servlet依赖-->
|
<!-- <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-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.belerweb</groupId>
|
<artifactId>pinyin4j</artifactId>
|
<version>${pinyin4j.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-scratchpad</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml-schemas</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>ooxml-schemas</artifactId>
|
<version>${ooxml.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.ow2.asm</groupId>
|
<artifactId>asm</artifactId>
|
<version>4.2</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.ehcache</groupId>
|
<artifactId>ehcache</artifactId>
|
<version>${ehcache.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>cglib</groupId>
|
<artifactId>cglib</artifactId>
|
<version>3.1</version>
|
</dependency>
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>2.9.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.47</version>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>2.2.6</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>poi-ooxml-schemas</artifactId>
|
<groupId>org.apache.poi</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>poi-ooxml</artifactId>
|
<groupId>org.apache.poi</groupId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>cglib</groupId>
|
<artifactId>cglib</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.ow2.asm</groupId>
|
<artifactId>asm</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.ehcache</groupId>
|
<artifactId>ehcache</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
<version>15.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
<version>1.5.6.RELEASE</version>
|
<optional>true</optional>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<finalName>proxymanager</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<mainClass>com.terra.proxymanager.ProxyApplication</mainClass>
|
<fork>true</fork>
|
</configuration>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-war-plugin</artifactId>
|
<version>2.6</version>
|
<configuration>
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.5.1</version>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
<configuration>
|
<skip>true</skip>
|
</configuration>
|
</plugin>
|
</plugins>
|
<resources>
|
<resource>
|
<directory>src/main/resource</directory>
|
</resource>
|
</resources>
|
</build>
|
</project>
|