You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
209 lines
7.0 KiB
209 lines
7.0 KiB
12 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>
|
||
|
<parent>
|
||
|
<groupId>com.dxhy.order</groupId>
|
||
|
<artifactId>order-management</artifactId>
|
||
|
<version>8.0.3-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>com.dxhy.entrance</groupId>
|
||
|
<artifactId>dxhy-consumer</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<name>dxhy-consumer</name>
|
||
|
<description>dxhy-consumer</description>
|
||
|
<properties>
|
||
|
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
|
||
|
|
||
|
<!-- Spring Boot Web引用-->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
<optional>true</optional>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.yaml</groupId>
|
||
|
<artifactId>snakeyaml</artifactId>
|
||
|
</exclusion>
|
||
|
<!--排除自带的tomcat依赖-->
|
||
|
<exclusion>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 添加tongweb-spring-boot-starter依赖 -->
|
||
|
<dependency>
|
||
|
<groupId>com.tongweb.springboot</groupId>
|
||
|
<artifactId>tongweb-spring-boot-starter-2.x</artifactId>
|
||
|
<version>7.0.E.6_P7</version>
|
||
|
</dependency>
|
||
|
<!-- 添加tongweb其他依赖 -->
|
||
|
<dependency>
|
||
|
<groupId>com.tongweb</groupId>
|
||
|
<artifactId>tongweb-embed-core</artifactId>
|
||
|
<version>7.0.E.6_P7</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.tongweb</groupId>
|
||
|
<artifactId>tongweb-embed-el</artifactId>
|
||
|
<version>7.0.E.6_P7</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.tongweb</groupId>
|
||
|
<artifactId>tongweb-javax-annotation</artifactId>
|
||
|
<version>1.2.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.tongweb</groupId>
|
||
|
<artifactId>tongweb-lic-sdk</artifactId>
|
||
|
<version>4.5.0.0</version>
|
||
|
</dependency>
|
||
|
<!-- 添加javax.servlet依赖(移除tomcat导致) -->
|
||
|
<dependency>
|
||
|
<groupId>javax.servlet</groupId>
|
||
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
<version>4.0.1</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Spring Boot Test Dependencies -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.yaml</groupId>
|
||
|
<artifactId>snakeyaml</artifactId>
|
||
|
<version>${snakeyaml.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>commons-io</groupId>
|
||
|
<artifactId>commons-io</artifactId>
|
||
|
<version>${commonsIo.version}</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-compress</artifactId>
|
||
|
<version>${commonsCompress.version}</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>${lombok.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-all</artifactId>
|
||
|
<version>${hutool.version}</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- springboot 日志支持 -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-devtools</artifactId>
|
||
|
<scope>runtime</scope>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.dxhy.order</groupId>
|
||
|
<artifactId>order-management-order</artifactId>
|
||
|
<version>${sims-order.version}</version>
|
||
|
<scope>compile</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>commons-io</artifactId>
|
||
|
<groupId>commons-io</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-all</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>org.yaml</groupId>
|
||
|
<artifactId>snakeyaml</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 销项后台服务 -->
|
||
|
<dependency>
|
||
|
<groupId>com.dxhy.management</groupId>
|
||
|
<artifactId>sims-back-service</artifactId>
|
||
|
<version>${sims-back.version}</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<finalName>sims-api</finalName>
|
||
|
<resources>
|
||
|
<!-- 资源文件处理,优先去除不需要打包服务(download,redinvoice中包含excel文件,不能进行打包,不然会无法下载,后面进行复制操作), -->
|
||
|
<resource>
|
||
|
<directory>${project.basedir}/src/main/resources</directory>
|
||
|
<filtering>true</filtering>
|
||
|
</resource>
|
||
|
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<!--打包时添加版本信息-->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>3.3.0</version>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifestEntries>
|
||
|
<version>${project.parent.version}</version>
|
||
|
</manifestEntries>
|
||
|
</archive>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
|
||
|
<!--打包排除-->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
<version>${maven.deploy.plugin.version}</version>
|
||
|
<configuration>
|
||
|
<skip>true</skip>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|