2018-11-23 09:08:15 +08:00
|
|
|
<?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>
|
|
|
|
|
|
|
|
|
|
<groupId>com.gzzn.omms</groupId>
|
|
|
|
|
<artifactId>msgexchange-api</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>msgexchange-api</name>
|
|
|
|
|
<description>msg exchange service</description>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>1.5.17.RELEASE</version>
|
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.kafka</groupId>
|
|
|
|
|
<artifactId>spring-kafka</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
|
<artifactId>jackson-dataformat-xml</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-12-03 15:37:34 +08:00
|
|
|
|
2018-11-23 09:08:15 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.oracle</groupId>
|
|
|
|
|
<artifactId>ojdbc6</artifactId>
|
|
|
|
|
<version>11.2.0.3</version>
|
|
|
|
|
<scope>system</scope>
|
2018-12-03 12:58:47 +08:00
|
|
|
<systemPath>${project.basedir}/src/main/resources/lib/ojdbc6-11.2.0.3.jar</systemPath>
|
2018-11-23 09:08:15 +08:00
|
|
|
</dependency>
|
2018-11-28 16:51:42 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
<version>2.7.0</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
<version>2.7.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-11-23 09:08:15 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
2018-12-03 10:53:37 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.spotify</groupId>
|
|
|
|
|
<artifactId>dockerfile-maven-plugin</artifactId>
|
|
|
|
|
<version>1.4.4</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<username>gzzn</username>
|
|
|
|
|
<password>Gzzn@2018</password>
|
|
|
|
|
<!-- 镜像tag -->
|
|
|
|
|
<tag>${project.version}</tag>
|
|
|
|
|
|
|
|
|
|
<!--useMavenSettingsForAuth>true</useMavenSettingsForAuth -->
|
|
|
|
|
<!-- 禁止使用谷歌商店认证 -->
|
|
|
|
|
<googleContainerRegistryEnabled>false</googleContainerRegistryEnabled>
|
|
|
|
|
|
|
|
|
|
<repository>130.120.3.193/${project.groupId}/${project.artifactId}</repository>
|
|
|
|
|
<buildArgs>
|
|
|
|
|
<JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
|
|
|
|
|
</buildArgs>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2018-11-23 09:08:15 +08:00
|
|
|
</plugins>
|
2018-12-03 12:03:02 +08:00
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>lib</directory>
|
|
|
|
|
<targetPath>BOOT-INF/lib</targetPath>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*.jar</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
2018-12-03 15:27:53 +08:00
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
</resource>
|
2018-12-03 12:03:02 +08:00
|
|
|
</resources>
|
2018-11-23 09:08:15 +08:00
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|