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.
65 lines
2.1 KiB
65 lines
2.1 KiB
<?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>com.cloud</groupId> |
|
<artifactId>kicc-common-demo-mq</artifactId> |
|
<version>1.0.0</version> |
|
</parent> |
|
|
|
<artifactId>kicc-message-consumer</artifactId> |
|
<packaging>jar</packaging> |
|
|
|
<description>mq消息消费者</description> |
|
|
|
<dependencies> |
|
<!--undertow容器--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-undertow</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-common-rocketmq</artifactId> |
|
</dependency> |
|
<!--数据服务核心包--> |
|
<dependency> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-common-data</artifactId> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>io.fabric8</groupId> |
|
<artifactId>docker-maven-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>true</filtering> |
|
<excludes> |
|
<exclude>**/*.xlsx</exclude> |
|
<exclude>**/*.xls</exclude> |
|
</excludes> |
|
</resource> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>false</filtering> |
|
<includes> |
|
<include>**/*.xlsx</include> |
|
<include>**/*.xls</include> |
|
</includes> |
|
</resource> |
|
</resources> |
|
</build> |
|
|
|
</project>
|
|
|