<?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.cloud</groupId>
|
<artifactId>control-service</artifactId>
|
<version>1.0</version>
|
<packaging>jar</packaging>
|
|
<properties>
|
<spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
<java.version>1.8</java.version>
|
<mybatis.version>1.3.2</mybatis.version>
|
<elasticsearch.version>6.2.3</elasticsearch.version>
|
<fdfs.version>1.26.2</fdfs.version>
|
<security-oauth2.version>2.3.3.RELEASE</security-oauth2.version>
|
|
<monitor.version>2.0.2</monitor.version>
|
<apache.commons>3.7</apache.commons>
|
<commons-collections>4.1</commons-collections>
|
<swagger.version>2.8.0</swagger.version>
|
<fastjson.version>1.2.47</fastjson.version>
|
<jwt.version>0.9.0</jwt.version>
|
<docker.image.prefix>bjbsk</docker.image.prefix>
|
<api.model.version>3.0</api.model.version>
|
<commons.version>5.0</commons.version>
|
</properties>
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.0.4.RELEASE</version>
|
</parent>
|
|
<dependencies>
|
<dependency>
|
<groupId>junit</groupId>
|
<artifactId>junit</artifactId>
|
<version>4.11</version>
|
<scope>test</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.mybatis.spring.boot</groupId>
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<scope>runtime</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.session</groupId>
|
<artifactId>spring-session-data-redis</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-bean-validators</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>${apache.commons}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-collections4</artifactId>
|
<version>${commons-collections}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-test</artifactId>
|
<version>5.0.8.RELEASE</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.14-beta1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml-schemas</artifactId>
|
<version>3.14-beta1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>3.14-beta1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.cloud</groupId>
|
<artifactId>api-model</artifactId>
|
<version>${api.model.version}</version>
|
<scope>compile</scope>
|
</dependency>
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>2.9.0</version>
|
</dependency>
|
<!--pl加-->
|
<dependency>
|
<groupId>com.cloud</groupId>
|
<artifactId>commons</artifactId>
|
<version>${commons.version}</version>
|
<scope>compile</scope>
|
</dependency>
|
<dependency>
|
<groupId>net.oschina.zcx7878</groupId>
|
<artifactId>fastdfs-client-java</artifactId>
|
<version>1.27.0.0</version>
|
</dependency>
|
<!--wp加-->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpcore</artifactId>
|
<version>4.4.9</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.5</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.java-websocket</groupId>
|
<artifactId>Java-WebSocket</artifactId>
|
<version>1.3.8</version>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>5.1.47</version>
|
</dependency>
|
</dependencies>
|
|
<dependencyManagement>
|
<dependencies>
|
<dependency>
|
<groupId>org.mybatis.spring.boot</groupId>
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
<version>${mybatis.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt</artifactId>
|
<version>${jwt.version}</version>
|
</dependency>
|
</dependencies>
|
</dependencyManagement>
|
|
<build>
|
<finalName>${project.artifactId}</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
|
<plugin>
|
<groupId>com.spotify</groupId>
|
<artifactId>docker-maven-plugin</artifactId>
|
<version>0.4.3</version>
|
<configuration>
|
<imageName>${docker.image.prefix}/${project.artifactId}</imageName>
|
<dockerDirectory>src/main/docker</dockerDirectory>
|
<resources>
|
<resource>
|
<targetPath>/</targetPath>
|
<directory>${project.build.directory}</directory>
|
<include>${project.build.finalName}.jar</include>
|
</resource>
|
</resources>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|