|
|
|
<?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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>waynboot</artifactId>
|
|
|
|
<groupId>com.wayn</groupId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>waynboot-message-consumer</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<main-class>com.wayn.MessageApplication</main-class>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.wayn</groupId>
|
|
|
|
<artifactId>waynboot-message-core</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.wayn</groupId>
|
|
|
|
<artifactId>waynboot-data-redis</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-redis</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Apache工具组件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>${commons-lang3.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Apache 集合工具组件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
<version>${commons.collections.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 阿里JSON解析器 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
|
|
<version>${spring-boot-admin.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- 指定该Main Class为全局的唯一入口 -->
|
|
|
|
<mainClass>com.wayn.MessageApplication</mainClass>
|
|
|
|
<layout>ZIP</layout>
|
|
|
|
<!--<commandlineArguments>
|
|
|
|
-parameters
|
|
|
|
</commandlineArguments>-->
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.google.cloud.tools</groupId>
|
|
|
|
<artifactId>jib-maven-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
<configuration>
|
|
|
|
<!--配置基本镜像-->
|
|
|
|
<from>
|
|
|
|
<image>${docker-from-image-name}</image>
|
|
|
|
</from>
|
|
|
|
<!--配置最终推送的地址,仓库名,镜像名-->
|
|
|
|
<to>
|
|
|
|
<image>registry.cn-shanghai.aliyuncs.com/${aliyun-docker-namespace}/${project.artifactId}
|
|
|
|
</image>
|
|
|
|
<tags>
|
|
|
|
<tag>${project.version}</tag>
|
|
|
|
<tag>latest</tag>
|
|
|
|
</tags>
|
|
|
|
<auth>
|
|
|
|
<username>${docker-username}</username>
|
|
|
|
<password>${docker-passwqrd}</password>
|
|
|
|
</auth>
|
|
|
|
</to>
|
|
|
|
<container>
|
|
|
|
<mainClass>${main-class}</mainClass>
|
|
|
|
<jvmFlags>
|
|
|
|
<jvmFlag>-Xms412m</jvmFlag>
|
|
|
|
<jvmFlag>-Xmx412m</jvmFlag>
|
|
|
|
<jvmFlag>-XX:+HeapDumpOnOutOfMemoryError</jvmFlag>
|
|
|
|
<jvmFlag>-XX:HeapDumpPath=./</jvmFlag>
|
|
|
|
</jvmFlags>
|
|
|
|
</container>
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
<!-- 绑定到maven lifecicle-->
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>build</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|