parent
807b381437
commit
8c8903148e
@ -1,262 +1,261 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
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> |
<modelVersion>4.0.0</modelVersion> |
||||||
<parent> |
<parent> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>DigitalLaboratoryPlatform</artifactId> |
<artifactId>DigitalLaboratoryPlatform</artifactId> |
||||||
<version>2022.10.11-snapshots</version> |
<version>2022.10.11-snapshots</version> |
||||||
</parent> |
</parent> |
||||||
|
|
||||||
<artifactId>dlp-entrustment</artifactId> |
<artifactId>dlp-entrustment</artifactId> |
||||||
<packaging>jar</packaging> |
<packaging>jar</packaging> |
||||||
|
|
||||||
<description>送检受理</description>111 |
<description>送检受理</description> |
||||||
|
|
||||||
<properties> |
<properties> |
||||||
<dlp.version>2022.10.11-snapshots</dlp.version> |
<dlp.version>2022.10.11-snapshots</dlp.version> |
||||||
<cloud.alibaba.version>2021.1</cloud.alibaba.version> |
<cloud.alibaba.version>2021.1</cloud.alibaba.version> |
||||||
<fastexcel.version>1.0.0</fastexcel.version> |
<fastexcel.version>1.0.0</fastexcel.version> |
||||||
</properties> |
</properties> |
||||||
|
|
||||||
<dependencies> |
<dependencies> |
||||||
<!--注册中心客户端--> |
<!--注册中心客户端--> |
||||||
<!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-discovery --> |
<!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-discovery --> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>com.alibaba.cloud</groupId> |
<groupId>com.alibaba.cloud</groupId> |
||||||
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
||||||
<version>${cloud.alibaba.version}</version> |
<version>${cloud.alibaba.version}</version> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!--配置中心客户端--> |
<!--配置中心客户端--> |
||||||
<!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-config --> |
<!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-config --> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>com.alibaba.cloud</groupId> |
<groupId>com.alibaba.cloud</groupId> |
||||||
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
||||||
<version>${cloud.alibaba.version}</version> |
<version>${cloud.alibaba.version}</version> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!-- swagger --> |
<!-- swagger --> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>dlp-common-swagger</artifactId> |
<artifactId>dlp-common-swagger</artifactId> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!--断路器依赖--> |
<!--断路器依赖--> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>dlp-common-feign</artifactId> |
<artifactId>dlp-common-feign</artifactId> |
||||||
<version>${dlp.version}</version> |
<version>${dlp.version}</version> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!--security--> |
<!--security--> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>dlp-common-security</artifactId> |
<artifactId>dlp-common-security</artifactId> |
||||||
<version>${dlp.version}</version> |
<version>${dlp.version}</version> |
||||||
</dependency> |
</dependency> |
||||||
<!--JDBC相关--> |
<!--JDBC相关--> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>org.springframework.boot</groupId> |
<groupId>org.springframework.boot</groupId> |
||||||
<artifactId>spring-boot-starter-jdbc</artifactId> |
<artifactId>spring-boot-starter-jdbc</artifactId> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!-- 数据库 mysql依赖 --> |
<!-- 数据库 mysql依赖 --> |
||||||
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> |
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>mysql</groupId> |
<groupId>mysql</groupId> |
||||||
<artifactId>mysql-connector-java</artifactId> |
<artifactId>mysql-connector-java</artifactId> |
||||||
<version>${mysql-connector-java.version}</version> |
<version>${mysql-connector-java.version}</version> |
||||||
</dependency> |
</dependency> |
||||||
<!--undertow容器--> |
<!--undertow容器--> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>org.springframework.boot</groupId> |
<groupId>org.springframework.boot</groupId> |
||||||
<artifactId>spring-boot-starter-undertow</artifactId> |
<artifactId>spring-boot-starter-undertow</artifactId> |
||||||
</dependency> |
</dependency> |
||||||
<!-- log --> |
<!-- log --> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>dlp-common-log</artifactId> |
<artifactId>dlp-common-log</artifactId> |
||||||
<version>${dlp.version}</version> |
<version>${dlp.version}</version> |
||||||
</dependency> |
</dependency> |
||||||
<!-- 业务数据的依赖 --> |
<!-- 业务数据的依赖 --> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>dlp-admin-api</artifactId> |
<artifactId>dlp-admin-api</artifactId> |
||||||
<version>${dlp.version}</version> |
<version>${dlp.version}</version> |
||||||
</dependency> |
</dependency> |
||||||
<!-- 污水系统api--> |
<!-- 污水系统api--> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>dlp-sewage-api</artifactId> |
<artifactId>dlp-sewage-api</artifactId> |
||||||
<version>${dlp.version}</version> |
<version>${dlp.version}</version> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!-- 第三方系统集成api工具类--> |
<!-- 第三方系统集成api工具类--> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>dlp-othersys-api</artifactId> |
<artifactId>dlp-othersys-api</artifactId> |
||||||
<version>${dlp.version}</version> |
<version>${dlp.version}</version> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<dependency> |
<dependency> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>dlp-common-oss</artifactId> |
<artifactId>dlp-common-oss</artifactId> |
||||||
<version>${dlp.version}</version> |
<version>${dlp.version}</version> |
||||||
<scope>compile</scope> |
<scope>compile</scope> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<dependency> |
<dependency> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>dlp-common-remote-word2pdf</artifactId> |
<artifactId>dlp-common-remote-word2pdf</artifactId> |
||||||
<version>${dlp.version}</version> |
<version>${dlp.version}</version> |
||||||
<scope>compile</scope> |
<scope>compile</scope> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!-- https://mvnrepository.com/artifact/cglib/cglib-nodep --> |
<!-- https://mvnrepository.com/artifact/cglib/cglib-nodep --> |
||||||
<!-- 主要使用 beanToMap --> |
<!-- 主要使用 beanToMap --> |
||||||
<!-- <dependency>--> |
<!-- <dependency>--> |
||||||
<!-- <groupId>cglib</groupId>--> |
<!-- <groupId>cglib</groupId>--> |
||||||
<!-- <artifactId>cglib-nodep</artifactId>--> |
<!-- <artifactId>cglib-nodep</artifactId>--> |
||||||
<!-- <version>3.3.0</version>--> |
<!-- <version>3.3.0</version>--> |
||||||
<!-- </dependency>--> |
<!-- </dependency>--> |
||||||
|
|
||||||
<!-- poi-tl word 模板处理器 http://deepoove.com/poi-tl --> |
<!-- poi-tl word 模板处理器 http://deepoove.com/poi-tl --> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>com.deepoove</groupId> |
<groupId>com.deepoove</groupId> |
||||||
<artifactId>poi-tl</artifactId> |
<artifactId>poi-tl</artifactId> |
||||||
<version>1.12.0</version> |
<version>1.12.0</version> |
||||||
</dependency> |
</dependency> |
||||||
<!-- Spring EL表达式作为模板处理语言 --> |
<!-- Spring EL表达式作为模板处理语言 --> |
||||||
<!-- <dependency>--> |
<!-- <dependency>--> |
||||||
<!-- <groupId>org.springframework</groupId>--> |
<!-- <groupId>org.springframework</groupId>--> |
||||||
<!-- <artifactId>spring-expression</artifactId>--> |
<!-- <artifactId>spring-expression</artifactId>--> |
||||||
<!-- <version>5.3.18</version>--> |
<!-- <version>5.3.18</version>--> |
||||||
<!-- </dependency>--> |
<!-- </dependency>--> |
||||||
<!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
<!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>commons-io</groupId> |
<groupId>commons-io</groupId> |
||||||
<artifactId>commons-io</artifactId> |
<artifactId>commons-io</artifactId> |
||||||
<version>2.11.0</version> |
<version>2.11.0</version> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!-- <dependency>--> |
<!-- <dependency>--> |
||||||
<!-- <groupId>fr.opensagres.xdocreport</groupId>--> |
<!-- <groupId>fr.opensagres.xdocreport</groupId>--> |
||||||
<!-- <artifactId>fr.opensagres.poi.xwpf.converter.pdf-gae</artifactId>--> |
<!-- <artifactId>fr.opensagres.poi.xwpf.converter.pdf-gae</artifactId>--> |
||||||
<!-- <version>2.0.3</version>--> |
<!-- <version>2.0.3</version>--> |
||||||
<!-- </dependency>--> |
<!-- </dependency>--> |
||||||
|
|
||||||
<!-- mybatis 字段类型处理器TypeHandler --> |
<!-- mybatis 字段类型处理器TypeHandler --> |
||||||
<!-- <dependency>--> |
<!-- <dependency>--> |
||||||
<!-- <groupId>com.fasterxml.jackson.datatype</groupId>--> |
<!-- <groupId>com.fasterxml.jackson.datatype</groupId>--> |
||||||
<!-- <artifactId>jackson-datatype-jsr310</artifactId>--> |
<!-- <artifactId>jackson-datatype-jsr310</artifactId>--> |
||||||
<!-- <version>2.12.5</version>--> |
<!-- <version>2.12.5</version>--> |
||||||
<!-- </dependency>--> |
<!-- </dependency>--> |
||||||
<!-- fastjson --> |
<!-- fastjson --> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>com.alibaba</groupId> |
<groupId>com.alibaba</groupId> |
||||||
<artifactId>fastjson</artifactId> |
<artifactId>fastjson</artifactId> |
||||||
<version>1.2.9</version> |
<version>1.2.9</version> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!-- 模板引擎: 生成打印标签 --> |
<!-- 模板引擎: 生成打印标签 --> |
||||||
<dependency> |
<dependency> |
||||||
<artifactId>velocity</artifactId> |
<artifactId>velocity</artifactId> |
||||||
<groupId>org.apache.velocity</groupId> |
<groupId>org.apache.velocity</groupId> |
||||||
<version>${velocity.version}</version> |
<version>${velocity.version}</version> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!-- for MockMultipartFile--> |
<!-- for MockMultipartFile--> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>org.springframework</groupId> |
<groupId>org.springframework</groupId> |
||||||
<artifactId>spring-test</artifactId> |
<artifactId>spring-test</artifactId> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!-- seata分布式事务--> |
<!-- seata分布式事务--> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>dlp-common-seata</artifactId> |
<artifactId>dlp-common-seata</artifactId> |
||||||
<version>${dlp.version}</version> |
<version>${dlp.version}</version> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
<!--加入aop 注解模块--> |
<!--加入aop 注解模块--> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>digital.laboratory.platform</groupId> |
<groupId>digital.laboratory.platform</groupId> |
||||||
<artifactId>dlp-common-aop</artifactId> |
<artifactId>dlp-common-aop</artifactId> |
||||||
<version>2022.10.11-snapshots</version> |
<version>2022.10.11-snapshots</version> |
||||||
</dependency> |
</dependency> |
||||||
|
|
||||||
</dependencies> |
</dependencies> |
||||||
|
|
||||||
|
|
||||||
|
<build> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<groupId>org.apache.maven.plugins</groupId> |
||||||
|
<artifactId>maven-compiler-plugin</artifactId> |
||||||
|
<configuration> |
||||||
|
<compilerArgument>-Xlint:unchecked</compilerArgument> |
||||||
|
</configuration> |
||||||
|
<version>3.8.1</version> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<groupId>org.springframework.boot</groupId> |
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<groupId>io.fabric8</groupId> |
||||||
|
<artifactId>docker-maven-plugin</artifactId> |
||||||
|
</plugin> |
||||||
|
|
||||||
<build> |
<plugin> |
||||||
<plugins> |
<groupId>org.codehaus.mojo</groupId> |
||||||
<plugin> |
<artifactId>build-helper-maven-plugin</artifactId> |
||||||
<groupId>org.apache.maven.plugins</groupId> |
<version>3.0.0</version> |
||||||
<artifactId>maven-compiler-plugin</artifactId> |
<executions> |
||||||
<configuration> |
<execution> |
||||||
<compilerArgument>-Xlint:unchecked</compilerArgument> |
<id>timestamp-property</id> |
||||||
</configuration> |
<goals> |
||||||
<version>3.8.1</version> |
<goal>timestamp-property</goal> |
||||||
</plugin> |
</goals> |
||||||
<plugin> |
<configuration> |
||||||
<groupId>org.springframework.boot</groupId> |
<name>timestamp</name> |
||||||
<artifactId>spring-boot-maven-plugin</artifactId> |
<pattern>yyyy-MM-dd HH:mm:ss</pattern> |
||||||
</plugin> |
<locale>zh_CN</locale> |
||||||
<plugin> |
<timeZone>Asia/Shanghai</timeZone> |
||||||
<groupId>io.fabric8</groupId> |
</configuration> |
||||||
<artifactId>docker-maven-plugin</artifactId> |
</execution> |
||||||
</plugin> |
</executions> |
||||||
|
</plugin> |
||||||
|
|
||||||
<plugin> |
|
||||||
<groupId>org.codehaus.mojo</groupId> |
|
||||||
<artifactId>build-helper-maven-plugin</artifactId> |
|
||||||
<version>3.0.0</version> |
|
||||||
<executions> |
|
||||||
<execution> |
|
||||||
<id>timestamp-property</id> |
|
||||||
<goals> |
|
||||||
<goal>timestamp-property</goal> |
|
||||||
</goals> |
|
||||||
<configuration> |
|
||||||
<name>timestamp</name> |
|
||||||
<pattern>yyyy-MM-dd HH:mm:ss</pattern> |
|
||||||
<locale>zh_CN</locale> |
|
||||||
<timeZone>Asia/Shanghai</timeZone> |
|
||||||
</configuration> |
|
||||||
</execution> |
|
||||||
</executions> |
|
||||||
</plugin> |
|
||||||
|
|
||||||
|
<plugin> |
||||||
|
<groupId>org.apache.maven.plugins</groupId> |
||||||
|
<artifactId>maven-resources-plugin</artifactId> |
||||||
|
<version>3.1.0</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<id>copy-resource-one</id> |
||||||
|
<phase>install</phase> |
||||||
|
<goals> |
||||||
|
<goal>copy-resources</goal> |
||||||
|
</goals> |
||||||
|
<configuration> |
||||||
|
<outputDirectory>${basedir}/../../out</outputDirectory> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/target</directory> |
||||||
|
<includes> |
||||||
|
<include>${project.artifactId}.jar</include> |
||||||
|
</includes> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
</configuration> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
|
||||||
<plugin> |
</plugins> |
||||||
<groupId>org.apache.maven.plugins</groupId> |
</build> |
||||||
<artifactId>maven-resources-plugin</artifactId> |
|
||||||
<version>3.1.0</version> |
|
||||||
<executions> |
|
||||||
<execution> |
|
||||||
<id>copy-resource-one</id> |
|
||||||
<phase>install</phase> |
|
||||||
<goals> |
|
||||||
<goal>copy-resources</goal> |
|
||||||
</goals> |
|
||||||
<configuration> |
|
||||||
<outputDirectory>${basedir}/../../out</outputDirectory> |
|
||||||
<resources> |
|
||||||
<resource> |
|
||||||
<directory>${basedir}/target</directory> |
|
||||||
<includes> |
|
||||||
<include>${project.artifactId}.jar</include> |
|
||||||
</includes> |
|
||||||
</resource> |
|
||||||
</resources> |
|
||||||
</configuration> |
|
||||||
</execution> |
|
||||||
</executions> |
|
||||||
</plugin> |
|
||||||
|
|
||||||
</plugins> |
|
||||||
</build> |
|
||||||
|
|
||||||
</project> |
</project> |
||||||
|
Loading…
Reference in new issue