<?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>
|
<artifactId>cube-quick-start</artifactId>
|
<groupId>com.tievd.cube</groupId>
|
<version>1.1.0</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
<artifactId>jyz-base-start</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
<groupId>com.tievd.cube.base</groupId>
|
<artifactId>system-local-api</artifactId>
|
</dependency>
|
|
<!-- 包含UI界面 -->
|
<dependency>
|
<groupId>org.springdoc</groupId>
|
<artifactId>springdoc-openapi-ui</artifactId>
|
<version>1.6.12</version>
|
</dependency>
|
|
<!-- swagger start-->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
<!-- swagger end-->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.75</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.8.1</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-beanutils</groupId>
|
<artifactId>commons-beanutils</artifactId>
|
<version>1.9.2</version>
|
<scope>compile</scope>
|
</dependency>
|
<!-- excel start-->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml-schemas</artifactId>
|
<version>4.1.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>4.1.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>4.1.1</version>
|
</dependency>
|
<!-- excel end-->
|
<dependency>
|
<groupId>com.tievd.cube</groupId>
|
<artifactId>cube-system-service</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.tievd.cube</groupId>
|
<artifactId>cube-system-api</artifactId>
|
</dependency>
|
<!-- mqtt协议接口库 -->
|
<dependency>
|
<groupId>org.springframework.integration</groupId>
|
<artifactId>spring-integration-mqtt</artifactId>
|
</dependency>
|
<!-- s3协议接口库 -->
|
<dependency>
|
<groupId>com.amazonaws</groupId>
|
<artifactId>aws-java-sdk-s3</artifactId>
|
<version>1.11.401</version>
|
</dependency>
|
|
<!--拼音-->
|
<dependency>
|
<groupId>com.belerweb</groupId>
|
<artifactId>pinyin4j</artifactId>
|
<version>2.5.1</version>
|
</dependency>
|
<!--完整sql-->
|
<dependency>
|
<groupId>p6spy</groupId>
|
<artifactId>p6spy</artifactId>
|
<version>3.9.1</version>
|
</dependency>
|
<!--word导出-->
|
<!--<dependency>-->
|
<!--<groupId>org.apache.poi</groupId>-->
|
<!--<artifactId>poi</artifactId>-->
|
<!--<version>3.15</version>-->
|
<!--</dependency>-->
|
<!--<dependency>-->
|
<!--<groupId>org.apache.poi</groupId>-->
|
<!--<artifactId>poi-ooxml</artifactId>-->
|
<!--<version>3.15</version>-->
|
<!--</dependency>-->
|
<dependency>
|
<groupId>fr.opensagres.xdocreport</groupId>
|
<artifactId>fr.opensagres.xdocreport.core</artifactId>
|
<version>2.0.2</version>
|
</dependency>
|
<dependency>
|
<groupId>fr.opensagres.xdocreport</groupId>
|
<artifactId>fr.opensagres.xdocreport.document</artifactId>
|
<version>2.0.2</version>
|
</dependency>
|
<dependency>
|
<groupId>fr.opensagres.xdocreport</groupId>
|
<artifactId>fr.opensagres.xdocreport.template</artifactId>
|
<version>2.0.2</version>
|
</dependency>
|
<dependency>
|
<groupId>fr.opensagres.xdocreport</groupId>
|
<artifactId>fr.opensagres.xdocreport.document.docx</artifactId>
|
<version>2.0.2</version>
|
</dependency>
|
<dependency>
|
<groupId>fr.opensagres.xdocreport</groupId>
|
<artifactId>fr.opensagres.xdocreport.template.freemarker</artifactId>
|
<version>2.0.2</version>
|
</dependency>
|
<!-- kafka客户端组件 -->
|
<dependency>
|
<groupId>org.springframework.kafka</groupId>
|
<artifactId>spring-kafka</artifactId>
|
<version>2.4.1.RELEASE</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.github.yulichang</groupId>
|
<artifactId>mybatis-plus-join-boot-starter</artifactId>
|
<version>1.4.4</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>${lombok.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
</dependency>
|
|
</dependencies>
|
|
</project>
|