pom.xml 5.8 KB

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