pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.hssx</groupId>
  7. <artifactId>model</artifactId>
  8. <version>0.0.1-SNAPSHOT</version> <!-- lookup parent from repository -->
  9. </parent>
  10. <groupId>com.hssx</groupId>
  11. <artifactId>cloud-model</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>cloud-model</name>
  14. <description>Demo project for Spring Boot</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-test</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. <!-- pagehelper整合mybatis-plus-->
  29. <!--Pagehelper 依赖 5.1.10 版本,需要去掉 mybatis 依赖,否则会和 mybatis plus 冲突-->
  30. <dependency>
  31. <groupId>com.github.pagehelper</groupId>
  32. <artifactId>pagehelper-spring-boot-starter</artifactId>
  33. <version>1.2.12</version>
  34. <exclusions>
  35. <exclusion>
  36. <groupId>org.mybatis</groupId>
  37. <artifactId>mybatis</artifactId>
  38. </exclusion>
  39. <exclusion>
  40. <groupId>org.mybatis</groupId>
  41. <artifactId>mybatis-spring</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <!-- mybatis-plus依赖 -->
  46. <dependency>
  47. <groupId>com.baomidou</groupId>
  48. <artifactId>mybatis-plus-boot-starter</artifactId>
  49. <version>3.1.2</version>
  50. </dependency>
  51. <!-- mybatis-plus代码生成器依赖 -->
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-generator</artifactId>
  55. <version>3.1.2</version>
  56. </dependency>
  57. <!-- velocity模板引擎 -->
  58. <dependency>
  59. <groupId>org.apache.velocity</groupId>
  60. <artifactId>velocity-engine-core</artifactId>
  61. <version>2.0</version>
  62. </dependency>
  63. <!-- freemarker 模板引擎-->
  64. <dependency>
  65. <groupId>org.freemarker</groupId>
  66. <artifactId>freemarker</artifactId>
  67. <version>2.3.23</version>
  68. </dependency>
  69. <!-- 文件上传 -->
  70. <dependency>
  71. <groupId>commons-fileupload</groupId>
  72. <artifactId>commons-fileupload</artifactId>
  73. <version>1.3.3</version>
  74. </dependency>
  75. <!-- fastjson -->
  76. <dependency>
  77. <groupId>com.alibaba</groupId>
  78. <artifactId>fastjson</artifactId>
  79. <version>1.2.7</version>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/commons-net/commons-net -->
  82. <dependency>
  83. <groupId>commons-net</groupId>
  84. <artifactId>commons-net</artifactId>
  85. <version>3.6</version>
  86. </dependency>
  87. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  88. <dependency>
  89. <groupId>org.apache.commons</groupId>
  90. <artifactId>commons-lang3</artifactId>
  91. <version>3.8.1</version>
  92. </dependency>
  93. <!--读取excel文件-->
  94. <dependency>
  95. <groupId>org.apache.poi</groupId>
  96. <artifactId>poi</artifactId>
  97. <version>3.17</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.poi</groupId>
  101. <artifactId>poi-ooxml</artifactId>
  102. <version>3.17</version>
  103. </dependency>
  104. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  105. <!--<dependency>-->
  106. <!--<groupId>org.apache.poi</groupId>-->
  107. <!--<artifactId>poi</artifactId>-->
  108. <!--<version>4.0.1</version>-->
  109. <!--</dependency>-->
  110. <dependency>
  111. <groupId>com.artofsolving</groupId>
  112. <artifactId>jodconverter</artifactId>
  113. <version>2.2.1</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.artofsolving</groupId>
  117. <artifactId>jodconverter-core-3.0.jar</artifactId>
  118. <version>1.0</version>
  119. <scope>system</scope>
  120. <systemPath>${basedir}/src/main/resources/lib/jodconverter-core-3.0.jar</systemPath>
  121. </dependency>
  122. <!--腾讯云上传文件SDK-->
  123. <dependency>
  124. <groupId>com.qcloud</groupId>
  125. <artifactId>cos_api</artifactId>
  126. <version>5.6.8</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.tencent.cloud</groupId>
  130. <artifactId>cos-sts-java</artifactId>
  131. <version>3.0.5</version>
  132. </dependency>
  133. </dependencies>
  134. <repositories>
  135. <repository>
  136. <id>bintray-qcloud-maven-repo</id>
  137. <name>qcloud-maven-repo</name>
  138. <url>https://dl.bintray.com/qcloud/maven-repo/</url>
  139. <layout>default</layout>
  140. <releases>
  141. <enabled>true</enabled>
  142. </releases>
  143. <snapshots>
  144. <enabled>false</enabled>
  145. </snapshots>
  146. </repository>
  147. </repositories>
  148. <build>
  149. <plugins>
  150. <plugin>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-maven-plugin</artifactId>
  153. <configuration>
  154. <fork>true</fork>
  155. <includeSystemScope>true</includeSystemScope>
  156. </configuration>
  157. </plugin>
  158. </plugins>
  159. </build>
  160. </project>