141 lines
5.3 KiB
XML
141 lines
5.3 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<packaging>pom</packaging>
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
|
<version>2.3.5.RELEASE</version>
|
||
|
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<java.version>1.8</java.version>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<spring-cloud-starter-openfeign.version>2.3.5.RELEASE</spring-cloud-starter-openfeign.version>
|
||
|
|
<spring-cloud-starter-netflix-zuul.version>2.3.5.RELEASE</spring-cloud-starter-netflix-zuul.version>
|
||
|
|
<spring-cloud-dependencies.version>Hoxton.SR12</spring-cloud-dependencies.version>
|
||
|
|
<spring-cloud-alibaba.version>2.2.6.RELEASE</spring-cloud-alibaba.version>
|
||
|
|
<mybatis-plus-boot-starter.version>3.4.0</mybatis-plus-boot-starter.version>
|
||
|
|
<commons-lang3.version>3.8.1</commons-lang3.version>
|
||
|
|
<commons-codec.version>1.10</commons-codec.version>
|
||
|
|
<bouncycastle.version>1.5.7</bouncycastle.version>
|
||
|
|
<fastjson.version>1.2.74</fastjson.version>
|
||
|
|
<slf4j-api.version>1.7.26</slf4j-api.version>
|
||
|
|
<commons-logging.version>1.2</commons-logging.version>
|
||
|
|
<emoji-java.version>4.0.0</emoji-java.version>
|
||
|
|
<elasticsearch.version>7.10.4</elasticsearch.version>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<groupId>com.jinrui.nxfc</groupId>
|
||
|
|
<artifactId>nxfc-server</artifactId>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
<name>nxfc-server</name>
|
||
|
|
|
||
|
|
<modules>
|
||
|
|
<module>com-admin-client</module>
|
||
|
|
<module>com-kaijiang-client</module>
|
||
|
|
<module>com-marriage-client</module>
|
||
|
|
<module>com-assembly-utils</module>
|
||
|
|
<module>com-core-model</module>
|
||
|
|
</modules>
|
||
|
|
|
||
|
|
|
||
|
|
<repositories>
|
||
|
|
<repository>
|
||
|
|
<id>hejiuxiaofendui-flexible-wesley</id>
|
||
|
|
<name>wesley</name>
|
||
|
|
<url>https://hejiuxiaofendui-maven.pkg.coding.net/repository/flexible/wesley/</url>
|
||
|
|
<releases>
|
||
|
|
<enabled>true</enabled>
|
||
|
|
</releases>
|
||
|
|
<snapshots>
|
||
|
|
<enabled>true</enabled>
|
||
|
|
</snapshots>
|
||
|
|
</repository>
|
||
|
|
</repositories>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-lang3</artifactId>
|
||
|
|
<version>${commons-lang3.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
<version>${fastjson.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<!-- Spring框架基本的核心工具 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-context-support</artifactId>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>spring-beans</artifactId>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-net</groupId>
|
||
|
|
<artifactId>commons-net</artifactId>
|
||
|
|
<version>3.6</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-io</groupId>
|
||
|
|
<artifactId>commons-io</artifactId>
|
||
|
|
<version>2.6</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- SM4加密依赖包 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.bouncycastle</groupId>
|
||
|
|
<artifactId>bcprov-jdk18on</artifactId>
|
||
|
|
<version>1.78.1</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.8.0</version>
|
||
|
|
<configuration>
|
||
|
|
<source>${java.version}</source>
|
||
|
|
<target>${java.version}</target>
|
||
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-resources-plugin</artifactId>
|
||
|
|
<version>3.1.0</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<phase>compile</phase>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
<configuration>
|
||
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
|
<version>2.22.1</version>
|
||
|
|
<configuration>
|
||
|
|
<testFailureIgnore>true</testFailureIgnore>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
</project>
|