334 lines
12 KiB
XML
334 lines
12 KiB
XML
|
<?xml version="1.0"?>
|
||
|
<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>
|
||
|
<parent>
|
||
|
<groupId>com.zkj.loan</groupId>
|
||
|
<artifactId>loan-parent</artifactId>
|
||
|
<version>5.0</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>loan-mgmt-boot</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<name>loan-mgmt-boot</name>
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>cn.zm</groupId>-->
|
||
|
<!-- <artifactId>knife4j</artifactId>-->
|
||
|
<!-- <version>1.0.1-snapshot</version>-->
|
||
|
<!-- </dependency>-->
|
||
|
|
||
|
<!-- 非对称加密-->
|
||
|
<dependency>
|
||
|
<groupId>cn.shuibo</groupId>
|
||
|
<artifactId>rsa-encrypt-body-spring-boot</artifactId>
|
||
|
<version>1.0.1.RELEASE</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish</groupId>
|
||
|
<artifactId>jakarta.el</artifactId>
|
||
|
<version>3.0.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.zkj.loan</groupId>
|
||
|
<artifactId>loan-common-next-probe</artifactId>
|
||
|
<version>5.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-actuator</artifactId>
|
||
|
</dependency>
|
||
|
<!-- 配置中心来做配置管理-->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-pool2</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.zkj.loan</groupId>
|
||
|
<artifactId>loan-online-internet-api</artifactId>
|
||
|
<version>5.0.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.zkj.loan</groupId>
|
||
|
<artifactId>loan-mgmt-internet-action</artifactId>
|
||
|
<version>5.0</version>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-logging</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.zkj.loan</groupId>
|
||
|
<artifactId>loan-scheduler-controller</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.junit.platform</groupId>
|
||
|
<artifactId>junit-platform-launcher</artifactId>
|
||
|
<scope>test</scope>
|
||
|
<version>1.6.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>spring-jcl</artifactId>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>com.jayway.jsonpath</groupId>
|
||
|
<artifactId>json-path</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>commons-logging</groupId>
|
||
|
<artifactId>commons-logging</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<!--rabbitmq-->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-simple-workflow</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-modeler</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-common-rest</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-diagram-rest</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-rest</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-crystalball</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-cxf</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-bpmn-layout</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-process-validation</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-image-generator</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-bpmn-layout</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-process-validation</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.activiti</groupId>
|
||
|
<artifactId>activiti-image-generator</artifactId>
|
||
|
</dependency>
|
||
|
<!-- 添加 dm8 jdbc jar 包依赖-->
|
||
|
<dependency>
|
||
|
<groupId>com.dameng</groupId>
|
||
|
<artifactId>DmJdbcDriver18</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.logstash.logback</groupId>
|
||
|
<artifactId>logstash-logback-encoder</artifactId>
|
||
|
<version>7.3</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.github.ulisesbocchio</groupId>
|
||
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!--<dependency>
|
||
|
<groupId>com.zkj.report</groupId>
|
||
|
<artifactId>report-loan-starter</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</dependency>-->
|
||
|
</dependencies>
|
||
|
|
||
|
<!--<profiles>
|
||
|
<profile>
|
||
|
<id>local</id>
|
||
|
<properties>
|
||
|
<profile.active>local</profile.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>dev</id>
|
||
|
<properties>
|
||
|
<profile.active>dev</profile.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>sit1</id>
|
||
|
<properties>
|
||
|
<profile.active>sit1</profile.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>sit2</id>
|
||
|
<properties>
|
||
|
<profile.active>sit2</profile.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>sit3</id>
|
||
|
<properties>
|
||
|
<profile.active>sit3</profile.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>uat1</id>
|
||
|
<properties>
|
||
|
<profile.active>uat1</profile.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>uat2</id>
|
||
|
<properties>
|
||
|
<profile.active>uat2</profile.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>uat3</id>
|
||
|
<properties>
|
||
|
<profile.active>uat3</profile.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>prod</id>
|
||
|
<activation>
|
||
|
<activeByDefault>true</activeByDefault>
|
||
|
</activation>
|
||
|
<properties>
|
||
|
<profile.active>prod</profile.active>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
-->
|
||
|
|
||
|
<build>
|
||
|
<finalName>loan-mgmt</finalName>
|
||
|
<plugins>
|
||
|
<!--<plugin>-->
|
||
|
<!--<groupId>org.apache.maven.plugins</groupId>-->
|
||
|
<!--<artifactId>maven-war-plugin</artifactId>-->
|
||
|
<!--<configuration>-->
|
||
|
<!--<webResources>-->
|
||
|
<!--<resource>-->
|
||
|
<!--<directory>${pom.basedir}/lib/sign/</directory>-->
|
||
|
<!--<targetPath>WEB-INF/lib</targetPath>-->
|
||
|
<!--</resource>-->
|
||
|
<!--<resource>-->
|
||
|
<!--<directory>${pom.basedir}/lib/sunecm/</directory>-->
|
||
|
<!--<targetPath>WEB-INF/lib</targetPath>-->
|
||
|
<!--</resource>-->
|
||
|
<!--</webResources>-->
|
||
|
<!--</configuration>-->
|
||
|
<!--</plugin>-->
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<version>2.1.2.RELEASE</version>
|
||
|
<configuration>
|
||
|
<mainClass>com.zkj.loan.boot.application.BackstageApplication</mainClass>
|
||
|
<layout>JAR</layout>
|
||
|
<includeSystemScope>true</includeSystemScope>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>repackage</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<!--<excludes>
|
||
|
<exclude>env/**</exclude>
|
||
|
<exclude>confBak/*</exclude>
|
||
|
<exclude>application*.yml</exclude>
|
||
|
</excludes>-->
|
||
|
</resource>
|
||
|
<!--<resource>
|
||
|
<directory>src/main/resources/env/${profile.active}</directory>
|
||
|
</resource>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<filtering>true</filtering>
|
||
|
<includes>
|
||
|
<include>application*.yml</include>
|
||
|
<include>application-${profile.active}.yml</include>
|
||
|
</includes>
|
||
|
</resource>-->
|
||
|
</resources>
|
||
|
</build>
|
||
|
</project>
|