pom.xml 6.4 KB

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