123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?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>stmms-ms-parent</artifactId>
- <groupId>cn.com.qmth</groupId>
- <version>${project.version}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>stmms-ms-commons</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-jpa</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- </dependency>
- <dependency>
- <groupId>net.coobird</groupId>
- <artifactId>thumbnailator</artifactId>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.1.16</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.1.30</version>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>io.springfox</groupId>-->
- <!--<artifactId>springfox-swagger2</artifactId>-->
- <!--<version>2.9.2</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>io.springfox</groupId>-->
- <!--<artifactId>springfox-swagger-ui</artifactId>-->
- <!--<version>2.9.2</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>io.swagger</groupId>-->
- <!--<artifactId>swagger-annotations</artifactId>-->
- <!--<version>1.5.21</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>io.swagger</groupId>-->
- <!--<artifactId>swagger-models</artifactId>-->
- <!--<version>1.5.21</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>com.aliyun.oss</groupId>
- <artifactId>aliyun-sdk-oss</artifactId>
- <version>3.8.0</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.6</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>itextpdf</artifactId>
- <version>5.5.13</version>
- </dependency>
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>itext-asian</artifactId>
- <version>5.2.0</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-core</artifactId>
- <version>5.7.22</version>
- </dependency>
- </dependencies>
- </project>
|