pom.xml 5.6 KB

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