141 lines
4.8 KiB
XML
141 lines
4.8 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>
|
|
<groupId>com.hbt.sass</groupId>
|
|
<artifactId>hbt-related-parties</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>hbt-related-parties-biz</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<dependencies>
|
|
<!-- 依赖hbt-paas-api-bpm -->
|
|
<dependency>
|
|
<groupId>com.hbt.onreal</groupId>
|
|
<artifactId>hbt-paas-api-bpm</artifactId>
|
|
</dependency>
|
|
<!-- 依赖easyword -->
|
|
<dependency>
|
|
<groupId>com.sushengren</groupId>
|
|
<artifactId>easyword</artifactId>
|
|
<version>1.1.5</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>5.2.2</version>
|
|
</dependency>
|
|
<!-- SpringCloud Ailibaba Nacos -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
</dependency>
|
|
<!-- SpringCloud Ailibaba Nacos Config -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
</dependency>
|
|
<!-- SpringCloud Ailibaba Sentinel -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
</dependency>
|
|
<!-- SpringBoot Actuator -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<!-- hbt Common DataSource -->
|
|
<dependency>
|
|
<groupId>com.hbt.onreal</groupId>
|
|
<artifactId>hbt-onreal-common-datasource</artifactId>
|
|
</dependency>
|
|
|
|
<!-- hbt Common DataScope -->
|
|
<dependency>
|
|
<groupId>com.hbt.onreal</groupId>
|
|
<artifactId>hbt-onreal-common-datascope</artifactId>
|
|
</dependency>
|
|
|
|
<!-- hbt Common Security -->
|
|
<dependency>
|
|
<groupId>com.hbt.onreal</groupId>
|
|
<artifactId>hbt-onreal-common-security</artifactId>
|
|
</dependency>
|
|
<!-- hbt Common Swagger -->
|
|
<dependency>
|
|
<groupId>com.hbt.onreal</groupId>
|
|
<artifactId>hbt-onreal-common-swagger</artifactId>
|
|
</dependency>
|
|
<!-- hbt Common log -->
|
|
<dependency>
|
|
<groupId>com.hbt.onreal</groupId>
|
|
<artifactId>hbt-onreal-common-log</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.hbt.sass</groupId>
|
|
<artifactId>hbt-corporate-info-api</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- Swagger -->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
</dependency>
|
|
<!-- Mysql Connector -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.hbt.sass</groupId>
|
|
<artifactId>hbt-corporate-info-api</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2</artifactId>
|
|
<version>2.0.52</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |