pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>rock.star.idea</groupId>
  7. <artifactId>rock-star-idea</artifactId>
  8. <version>0.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>pro-base</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <!-- docx转pdf end -->
  15. <dependency>
  16. <groupId>com.aspose</groupId>
  17. <artifactId>aspose-words</artifactId>
  18. <version>15.8.0</version>
  19. <scope>system</scope>
  20. <systemPath>${project.basedir}/src/main/resources/lib/aspose-words-15.8.0-jdk16.jar</systemPath>
  21. </dependency>
  22. <!-- 用友工具类 -->
  23. <!-- <dependency>-->
  24. <!-- <groupId>openAPIUtil</groupId>-->
  25. <!-- <artifactId>openAPIUtil</artifactId>-->
  26. <!-- <version>1.0.0</version>-->
  27. <!-- <scope>system</scope>-->
  28. <!-- <systemPath>${project.basedir}/../pro-base/src/main/resources/lib/OpenAPIUtil-1.0.0.jar</systemPath>-->
  29. <!-- </dependency>-->
  30. <dependency>
  31. <groupId>com.openAPIUtil</groupId>
  32. <artifactId>openAPIUtil</artifactId>
  33. <version>1.0.0</version>
  34. </dependency>
  35. <!-- Rock 工程依赖 -->
  36. <dependency>
  37. <groupId>com.rockstar.anticontrol</groupId>
  38. <artifactId>rock-frame</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.rockstar.anticontrol</groupId>
  42. <artifactId>rock-system</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.rockstar.anticontrol</groupId>
  46. <artifactId>rock-flow</artifactId>
  47. </dependency>
  48. <!-- SpringBoot集成mybatis框架 -->
  49. <dependency>
  50. <groupId>org.mybatis.spring.boot</groupId>
  51. <artifactId>mybatis-spring-boot-starter</artifactId>
  52. <version>${mybatis.version}</version>
  53. </dependency>
  54. <!--通用mapper起步依赖-->
  55. <!-- <dependency>-->
  56. <!-- <groupId>tk.mybatis</groupId>-->
  57. <!-- <artifactId>mapper-spring-boot-starter</artifactId>-->
  58. <!-- <version>${tkmybatis}</version>-->
  59. <!-- </dependency>-->
  60. <!-- 文件上传依赖 -->
  61. <dependency>
  62. <groupId>commons-io</groupId>
  63. <artifactId>commons-io</artifactId>
  64. <version>1.3.2</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>commons-fileupload</groupId>
  68. <artifactId>commons-fileupload</artifactId>
  69. <version>1.2.1</version>
  70. </dependency>
  71. <!--Alibaba-Excel-->
  72. <dependency>
  73. <groupId>com.alibaba</groupId>
  74. <artifactId>easyexcel</artifactId>
  75. <version>3.3.4</version>
  76. </dependency>
  77. <!-- 工具包 -->
  78. <dependency>
  79. <groupId>cn.hutool</groupId>
  80. <artifactId>hutool-all</artifactId>
  81. <version>5.7.4</version>
  82. </dependency>
  83. <!-- <dependency>-->
  84. <!-- <groupId>org.apache.poi</groupId>-->
  85. <!-- <artifactId>ooxml-schemas</artifactId>-->
  86. <!-- <version>1.1</version>-->
  87. <!-- </dependency>-->
  88. <dependency>
  89. <groupId>org.apache.poi</groupId>
  90. <artifactId>poi</artifactId>
  91. <version>4.1.2</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.poi</groupId>
  95. <artifactId>poi-ooxml</artifactId>
  96. <version>4.1.2</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.poi</groupId>
  100. <artifactId>poi-ooxml-schemas</artifactId>
  101. <version>4.1.2</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>commons-io</groupId>
  105. <artifactId>commons-io</artifactId>
  106. <version>2.10.0</version>
  107. </dependency>
  108. <!-- -->
  109. <dependency>
  110. <groupId>com.qiniu</groupId>
  111. <artifactId>qiniu-java-sdk</artifactId>
  112. <version>[7.7.0, 7.7.99]</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.google.code.gson</groupId>
  116. <artifactId>gson</artifactId>
  117. <version>2.8.5</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.postgresql</groupId>
  121. <artifactId>postgresql</artifactId>
  122. <scope>runtime</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.github.pagehelper</groupId>
  126. <artifactId>pagehelper</artifactId>
  127. <version>${pagehelper.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.github.pagehelper</groupId>
  131. <artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
  132. <version>1.2.3</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework.kafka</groupId>
  136. <artifactId>spring-kafka</artifactId>
  137. <version>2.8.0</version>
  138. </dependency>
  139. <!-- <dependency>-->
  140. <!-- <groupId>org.apache.kafka</groupId>-->
  141. <!-- <artifactId>kafka-clients</artifactId>-->
  142. <!-- <version>2.4.1</version>-->
  143. <!-- </dependency>-->
  144. <dependency>
  145. <groupId>org.projectlombok</groupId>
  146. <artifactId>lombok</artifactId>
  147. </dependency>
  148. </dependencies>
  149. <build>
  150. <plugins>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-compiler-plugin</artifactId>
  154. </plugin>
  155. <plugin>
  156. <groupId>org.mybatis.generator</groupId>
  157. <artifactId>mybatis-generator-maven-plugin</artifactId>
  158. <version>1.3.7</version>
  159. <configuration>
  160. <!--允许移动生成的文件 -->
  161. <verbose>false</verbose>
  162. <!--允许覆盖生成的文件 -->
  163. <overwrite>false</overwrite>
  164. <!--配置文件的路径 -->
  165. <configurationFile>src/main/resources/mybatis-generator.xml</configurationFile>
  166. </configuration>
  167. <dependencies>
  168. <dependency>
  169. <groupId>mysql</groupId>
  170. <artifactId>mysql-connector-java</artifactId>
  171. <version>${mysql.version}</version>
  172. </dependency>
  173. </dependencies>
  174. </plugin>
  175. </plugins>
  176. </build>
  177. </project>