12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?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>huimv-smart-incubator</artifactId>
- <groupId>con.huimv</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>cloud-platform-mobile</artifactId>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <mysql-connector-java.version>8.0.17</mysql-connector-java.version>
- <oracle.version>11.2.0.3</oracle.version>
- <mssql.version>9.3.0.jre8-preview</mssql.version>
- <postgresql.version>42.2.19</postgresql.version>
- <druid.version>1.1.21</druid.version>
- <mp.version>3.4.2</mp.version>
- <fastjson.version>1.2.75</fastjson.version>
- <jwt.version>0.9.1</jwt.version>
- <hutool.version>5.5.8</hutool.version>
- <lombok.versin>1.18.12</lombok.versin>
- <easypoi.version>4.2.0</easypoi.version>
- <jodconverter.version>4.2.0</jodconverter.version>
- <libreoffice.version>6.4.3</libreoffice.version>
- <justauth.version>1.15.6</justauth.version>
- <aliyun.oss.version>3.8.0</aliyun.oss.version>
- <qcloud.oss.version>5.6.23</qcloud.oss.version>
- <aliyun.sms.sdk.version>4.4.6</aliyun.sms.sdk.version>
- <aliyun.sms.esc.version>4.17.6</aliyun.sms.esc.version>
- <qcloud.sms.sdk.version>3.1.57</qcloud.sms.sdk.version>
- <knife4j.version>2.0.8</knife4j.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.20</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>5.3.9</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>5.3.9</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- <version>5.3.9</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.20</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>5.3.9</version>
- <scope>compile</scope>
- </dependency>
- <!--easypoi导入导出-->
- <dependency>
- <groupId>cn.afterturn</groupId>
- <artifactId>easypoi-base</artifactId>
- <version>${easypoi.version}</version>
- </dependency>
- </dependencies>
- </project>
|