445 lines
15 KiB
XML
445 lines
15 KiB
XML
|
<?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>production-parent</artifactId>
|
||
|
<groupId>net.northking</groupId>
|
||
|
<version>1.4.1-RELEASE</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>net.northking.cctp</groupId>
|
||
|
<artifactId>cctp-parent</artifactId>
|
||
|
<version>1.0.1-RELEASE</version>
|
||
|
<packaging>pom</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<!-- 定义spring boot 的版本 -->
|
||
|
<spring-boot.version>2.3.12.RELEASE</spring-boot.version>
|
||
|
<!-- 定义spring cloud 的版本-->
|
||
|
<spring-cloud.version>Hoxton.SR9</spring-cloud.version>
|
||
|
<!-- 数据库依赖版本 -->
|
||
|
<mysql.version>8.0.28</mysql.version>
|
||
|
<postgresql.version>42.5.1</postgresql.version>
|
||
|
<!-- 单元测试依赖版本 -->
|
||
|
<junit.version>4.12</junit.version>
|
||
|
<!-- 工具类依赖版本 -->
|
||
|
<jasypt.version>2.1.1</jasypt.version>
|
||
|
<springfox-swagger.version>2.9.2</springfox-swagger.version>
|
||
|
<pagehelper.version>1.2.13</pagehelper.version>
|
||
|
<poi.version>4.1.2</poi.version>
|
||
|
<!-- 定义alibaba cloud版本 -->
|
||
|
<spring-cloud-alibaba.version>2.2.7.RELEASE</spring-cloud-alibaba.version>
|
||
|
<!-- The main class to start by executing java -jar -->
|
||
|
<start-class>net.northking.cctp.SpringBootApplication</start-class>
|
||
|
|
||
|
<!-- 产品打包相关配置 -->
|
||
|
<!-- 产品名称 -->
|
||
|
<production-name>cctp</production-name>
|
||
|
<!-- 打包结果存放目录 -->
|
||
|
<dist-dir>${project.build.directory}/dist</dist-dir>
|
||
|
<!-- 注解校验 -->
|
||
|
<spring-boot-validation>2.3.12.RELEASE</spring-boot-validation>
|
||
|
<request-log-dependency.version>1.0.0-RELEASE</request-log-dependency.version>
|
||
|
<auth-dependency.version>1.0.7-RELEASE</auth-dependency.version>
|
||
|
<file-dependency.version>1.0.2-RELEASE</file-dependency.version>
|
||
|
<monster-dependency.version>1.0.5-RELEASE</monster-dependency.version>
|
||
|
<base-define-dependency.version>1.0.6-RELEASE</base-define-dependency.version>
|
||
|
<rest-dependency.version>1.0.0-RELEASE</rest-dependency.version>
|
||
|
<snowflake-id-dependency.version>1.0.6-RELEASE</snowflake-id-dependency.version>
|
||
|
<monster-support.version>1.0.0-RELEASE</monster-support.version>
|
||
|
<cctp-commons.version>1.0.2-RELEASE</cctp-commons.version>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>net.northking.cctp</groupId>
|
||
|
<artifactId>cctp-maven-plugin</artifactId>
|
||
|
<version>0.0.141</version>
|
||
|
</plugin>
|
||
|
<!-- 打jar包时排除 bootstrap.yml 和 application.yml -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>3.2.0</version>
|
||
|
<configuration>
|
||
|
<excludes>
|
||
|
<exclude>application.yml</exclude>
|
||
|
</excludes>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<!-- 分离依赖的jar -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>copy-dependencies</id>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>copy-dependencies</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<outputDirectory>${dist-dir}/lib</outputDirectory>
|
||
|
<excludeTransitive>false</excludeTransitive>
|
||
|
<stripVersion>false</stripVersion>
|
||
|
<includeScope>runtime</includeScope>
|
||
|
<excludeGroupIds>
|
||
|
net.northking.cctp
|
||
|
</excludeGroupIds>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<!-- 使用spring boot 的插件打包:指定启动类、不打包第三方依赖 -->
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<version>${spring-boot.version}</version>
|
||
|
<configuration>
|
||
|
<mainClass>${start-class}</mainClass>
|
||
|
<includeSystemScope>true</includeSystemScope>
|
||
|
<outputDirectory>${dist-dir}/</outputDirectory>
|
||
|
<finalName>${project.build.finalName}.ms</finalName>
|
||
|
<layout>ZIP</layout>
|
||
|
<includes>
|
||
|
<include>
|
||
|
<groupId>net.northking.cctp</groupId>
|
||
|
<artifactId>cctp-commons</artifactId>
|
||
|
</include>
|
||
|
</includes>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>repackage</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<!-- 使用ant插件整理安装部署文件 -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-antrun-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>run</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<tasks>
|
||
|
<!-- 拷贝 application*.yml 文件 -->
|
||
|
<copy todir="${dist-dir}/config" overwrite="true">
|
||
|
<fileset dir="${basedir}/src/main/resources">
|
||
|
<include name="application*.yml"/>
|
||
|
</fileset>
|
||
|
</copy>
|
||
|
<!-- 拷贝 微服务管理脚本 nk-ms.sh -->
|
||
|
<copy file="${basedir}/shell/nk-ms.sh" tofile="${dist-dir}/nk-ms.sh" overwrite="true"/>
|
||
|
</tasks>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
<version>3.2.1</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>attach-sources</id>
|
||
|
<goals>
|
||
|
<goal>jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-resources-plugin</artifactId>
|
||
|
<version>3.2.0</version>
|
||
|
<configuration>
|
||
|
<encoding>UTF-8</encoding>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>2.22.2</version>
|
||
|
<configuration>
|
||
|
<skip>false</skip>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
|
||
|
|
||
|
</plugins>
|
||
|
</pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.jacoco</groupId>
|
||
|
<artifactId>jacoco-maven-plugin</artifactId>
|
||
|
<version>0.8.5</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>pre-test</id>
|
||
|
<goals>
|
||
|
<goal>prepare-agent</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
<execution>
|
||
|
<id>post-test</id>
|
||
|
<phase>test</phase>
|
||
|
<goals>
|
||
|
<goal>report</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-dependencies</artifactId>
|
||
|
<version>${spring-boot.version}</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-core</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
<artifactId>gson</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>org.postgresql</groupId>
|
||
|
<artifactId>postgresql</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
<version>2.6.6</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-dependencies</artifactId>
|
||
|
<version>${spring-cloud.version}</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.github.ulisesbocchio</groupId>
|
||
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
||
|
<version>${jasypt.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.mybatis.spring.boot</groupId>
|
||
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
|
<version>2.0.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.pagehelper</groupId>
|
||
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
||
|
<version>${pagehelper.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
<version>${mysql.version}</version>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>com.google.protobuf</groupId>
|
||
|
<artifactId>protobuf-java</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.postgresql</groupId>
|
||
|
<artifactId>postgresql</artifactId>
|
||
|
<version>${postgresql.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.velocity</groupId>
|
||
|
<artifactId>velocity</artifactId>
|
||
|
<version>1.7</version>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/javax.validation/validation-api -->
|
||
|
<dependency>
|
||
|
<groupId>javax.validation</groupId>
|
||
|
<artifactId>validation-api</artifactId>
|
||
|
<version>2.0.1.Final</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-validation</artifactId>
|
||
|
<version>${spring-boot-validation}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.springfox</groupId>
|
||
|
<artifactId>springfox-swagger2</artifactId>
|
||
|
<version>${springfox-swagger.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.springfox</groupId>
|
||
|
<artifactId>springfox-swagger-ui</artifactId>
|
||
|
<version>${springfox-swagger.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.xiaoymin</groupId>
|
||
|
<artifactId>swagger-bootstrap-ui</artifactId>
|
||
|
<version>1.9.6</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
<artifactId>poi</artifactId>
|
||
|
<version>${poi.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
<artifactId>poi-ooxml</artifactId>
|
||
|
<version>${poi.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-jexl</artifactId>
|
||
|
<version>2.1.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>${junit.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<!-- spring cloud alibaba 依赖 -->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
||
|
<version>${spring-cloud-alibaba.version}</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.springframework.security</groupId>
|
||
|
<artifactId>spring-security-crypto</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-compress</artifactId>
|
||
|
<version>1.21</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mybatis</groupId>
|
||
|
<artifactId>mybatis</artifactId>
|
||
|
<version>3.5.6</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.pagehelper</groupId>
|
||
|
<artifactId>pagehelper</artifactId>
|
||
|
<version>5.3.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-databind</artifactId>
|
||
|
<version>2.13.4.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-core</artifactId>
|
||
|
<version>5.3.26</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.security</groupId>
|
||
|
<artifactId>spring-security-crypto</artifactId>
|
||
|
<version>5.5.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.tomcat.embed</groupId>
|
||
|
<artifactId>tomcat-embed-core</artifactId>
|
||
|
<version>9.0.54</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
<artifactId>gson</artifactId>
|
||
|
<version>2.8.9</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-fileupload</groupId>
|
||
|
<artifactId>commons-fileupload</artifactId>
|
||
|
<version>1.5</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>fastjson</artifactId>
|
||
|
<version>1.2.83</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-databind</artifactId>
|
||
|
<version>2.13.4.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-core</artifactId>
|
||
|
<version>2.13.4</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-annotations</artifactId>
|
||
|
<version>2.13.4</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-openfeign-core</artifactId>
|
||
|
<version>2.2.9.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.amqp</groupId>
|
||
|
<artifactId>spring-amqp</artifactId>
|
||
|
<version>2.3.11</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.github.openfeign</groupId>
|
||
|
<artifactId>feign-core</artifactId>
|
||
|
<version>10.12</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.github.openfeign</groupId>
|
||
|
<artifactId>feign-slf4j</artifactId>
|
||
|
<version>10.12</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.github.openfeign</groupId>
|
||
|
<artifactId>feign-hystrix</artifactId>
|
||
|
<version>10.12</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
</project>
|