You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
188 lines
5.4 KiB
188 lines
5.4 KiB
<?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"
|
|
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>digital.laboratory.platform</groupId>
|
|
<artifactId>DigitalLaboratoryPlatform</artifactId>
|
|
<version>2022.10.11-snapshots</version>
|
|
</parent>
|
|
|
|
<artifactId>dlp-admin-service</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<description>系统管理服务, 提供用户、机构、权限等基础管理功能</description>
|
|
|
|
<dependencies>
|
|
<!--upms api、model 模块-->
|
|
<dependency>
|
|
<groupId>digital.laboratory.platform</groupId>
|
|
<artifactId>dlp-admin-api</artifactId>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>digital.laboratory.platform</groupId>-->
|
|
<!-- <artifactId>dlp-bpmn-api</artifactId>-->
|
|
<!-- <version>2022.10.11-snapshots</version>-->
|
|
<!-- </dependency>-->
|
|
<!--文件管理-->
|
|
<dependency>
|
|
<groupId>digital.laboratory.platform</groupId>
|
|
<artifactId>dlp-common-oss</artifactId>
|
|
<version>2022.10.11-snapshots</version>
|
|
</dependency>
|
|
|
|
<!--安全模块-->
|
|
<dependency>
|
|
<groupId>digital.laboratory.platform</groupId>
|
|
<artifactId>dlp-common-security</artifactId>
|
|
</dependency>
|
|
<!--日志处理-->
|
|
<dependency>
|
|
<groupId>digital.laboratory.platform</groupId>
|
|
<artifactId>dlp-common-log</artifactId>
|
|
</dependency>
|
|
<!--接口文档-->
|
|
<dependency>
|
|
<groupId>digital.laboratory.platform</groupId>
|
|
<artifactId>dlp-common-swagger</artifactId>
|
|
</dependency>
|
|
<!--mybatis 模块-->
|
|
<dependency>
|
|
<groupId>digital.laboratory.platform</groupId>
|
|
<artifactId>dlp-common-mybatis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</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>
|
|
<!--undertow容器-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
|
</dependency>
|
|
<!--单元测试-->
|
|
<dependency>
|
|
<groupId>digital.laboratory.platform</groupId>
|
|
<artifactId>dlp-common-test</artifactId>
|
|
</dependency>
|
|
<!--临时使用,不使用了,将其注释掉-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.poi</groupId>-->
|
|
<!-- <artifactId>poi</artifactId>-->
|
|
<!-- <version>5.2.3</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.poi</groupId>-->
|
|
<!-- <artifactId>poi-ooxml</artifactId>-->
|
|
<!-- <version>5.2.3</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- 测试PDF SERVER-->
|
|
<dependency>
|
|
<groupId>digital.laboratory.platform</groupId>
|
|
<artifactId>dlp-common-remote-word2pdf</artifactId>
|
|
<version>2022.10.11-snapshots</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>io.fabric8</groupId>
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
</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>
|
|
<!-- 20230210 add xyl 这里是因为mvn 打包的时候会报错(Missing POM for org.apache.maven.surefire:surefire-junit3:jar
|
|
),所以我添加了下面这段)-->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.12.4</version>
|
|
<configuration>
|
|
<skipTests>true</skipTests>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<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>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
<excludes>
|
|
<exclude>**/*.xlsx</exclude>
|
|
<exclude>**/*.xls</exclude>
|
|
</excludes>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>false</filtering>
|
|
<includes>
|
|
<include>**/*.xlsx</include>
|
|
<include>**/*.xls</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
</project>
|
|
|