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.
102 lines
3.5 KiB
102 lines
3.5 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>com.qiantoon</groupId>
|
|
<artifactId>platform-module-udi</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>platform-module-udi-biz</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>
|
|
udi-biz 模块
|
|
</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.qiantoon</groupId>
|
|
<artifactId>platform-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.qiantoon</groupId>
|
|
<artifactId>platform-spring-boot-starter-mybatis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.hk2</groupId>
|
|
<artifactId>osgi-resource-locator</artifactId>
|
|
<version>2.4.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.xml.ws</groupId>
|
|
<artifactId>jaxws-rt</artifactId>
|
|
<version>4.0.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.qiantoon</groupId>
|
|
<artifactId>platform-spring-boot-starter-mq</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.qiantoon</groupId>
|
|
<artifactId>platform-spring-boot-starter-redis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.qiantoon</groupId>
|
|
<artifactId>platform-spring-boot-starter-excel</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.qiantoon</groupId>
|
|
<artifactId>platform-spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.qiantoon</groupId>
|
|
<artifactId>platform-module-udi-api</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.qiantoon</groupId>
|
|
<artifactId>platform-module-system-biz</artifactId>
|
|
<version>2.1.0-snapshot</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.belerweb</groupId>
|
|
<artifactId>pinyin4j</artifactId>
|
|
<version>2.5.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.qiantoon</groupId>
|
|
<artifactId>platform-module-infra-biz</artifactId>
|
|
<version>2.1.0-snapshot</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.checkerframework</groupId>
|
|
<artifactId>checker-qual</artifactId>
|
|
<version>3.41.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
<version>3.3.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|