pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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. <groupId>com.tuoren</groupId>
  6. <artifactId>forward</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>forward</name>
  10. <url>http://maven.apache.org</url>
  11. <properties>
  12. <encoding>UTF-8</encoding>
  13. <java-version>1.8</java-version>
  14. </properties>
  15. <parent>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>2.7.16</version>
  19. </parent>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-aop</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-jdbc</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.mybatis.spring.boot</groupId>
  35. <artifactId>mybatis-spring-boot-starter</artifactId>
  36. <version>2.3.1</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-data-redis</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mybatis.generator</groupId>
  44. <artifactId>mybatis-generator-core</artifactId>
  45. <version>1.4.2</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.mysql</groupId>
  49. <artifactId>mysql-connector-j</artifactId>
  50. <scope>runtime</scope>
  51. </dependency>
  52. <!-- SpringBoot MongoDB -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.github.pagehelper</groupId>
  59. <artifactId>pagehelper-spring-boot-starter</artifactId>
  60. <version>1.4.7</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.projectlombok</groupId>
  64. <artifactId>lombok</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alibaba.fastjson2</groupId>
  68. <artifactId>fastjson2</artifactId>
  69. <version>2.0.51</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.commons</groupId>
  73. <artifactId>commons-lang3</artifactId>
  74. </dependency>
  75. <!-- 提供Redis连接池 -->
  76. <dependency>
  77. <groupId>org.apache.commons</groupId>
  78. <artifactId>commons-pool2</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.github.xiaoymin</groupId>
  82. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  83. <version>4.1.0</version>
  84. </dependency>
  85. <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
  86. <dependency>
  87. <groupId>cn.dev33</groupId>
  88. <artifactId>sa-token-spring-boot-starter</artifactId>
  89. <version>1.30.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>cn.dev33</groupId>
  93. <artifactId>sa-token-dao-redis-jackson</artifactId>
  94. <version>1.30.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>cn.hutool</groupId>
  98. <artifactId>hutool-all</artifactId>
  99. <version>5.7.22</version>
  100. </dependency>
  101. <!-- 二维码 -->
  102. <dependency>
  103. <groupId>com.google.zxing</groupId>
  104. <artifactId>core</artifactId>
  105. <version>3.5.3</version>
  106. </dependency>
  107. <!-- amqp 1.0 qpid client -->
  108. <dependency>
  109. <groupId>org.apache.qpid</groupId>
  110. <artifactId>qpid-jms-client</artifactId>
  111. <version>0.57.0</version>
  112. </dependency>
  113. <!-- util for base64-->
  114. <dependency>
  115. <groupId>commons-codec</groupId>
  116. <artifactId>commons-codec</artifactId>
  117. </dependency>
  118. <!--mqtt依赖-->
  119. <dependency>
  120. <groupId>org.eclipse.paho</groupId>
  121. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  122. <version>1.2.2</version>
  123. </dependency>
  124. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  125. <dependency>
  126. <groupId>com.squareup.okhttp3</groupId>
  127. <artifactId>okhttp</artifactId>
  128. </dependency>
  129. <!-- https://mvnrepository.com/artifact/org.flywaydb/flyway-core -->
  130. <dependency>
  131. <groupId>org.flywaydb</groupId>
  132. <artifactId>flyway-core</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.flywaydb</groupId>
  136. <artifactId>flyway-mysql</artifactId>
  137. </dependency>
  138. <!--阿里云短信服务-->
  139. <dependency>
  140. <groupId>com.aliyun</groupId>
  141. <artifactId>dysmsapi20170525</artifactId>
  142. <version>2.0.24</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.aliyun</groupId>
  146. <artifactId>tea-openapi</artifactId>
  147. <version>0.3.2</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.aliyun</groupId>
  151. <artifactId>tea-console</artifactId>
  152. <version>0.0.1</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.aliyun</groupId>
  156. <artifactId>tea-util</artifactId>
  157. <version>0.2.21</version>
  158. </dependency>
  159. <dependency>
  160. <groupId> org.springframework.boot </groupId>
  161. <artifactId> spring-boot-configuration-processor </artifactId>
  162. <optional> true </optional>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.yaml</groupId>
  166. <artifactId>snakeyaml</artifactId>
  167. <version>1.30</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>io.netty</groupId>
  171. <artifactId>netty-all</artifactId>
  172. </dependency>
  173. <!--<dependency>
  174. <groupId>com.demo</groupId>
  175. <artifactId>forward</artifactId>
  176. <version>0.0.1-SNAPSHOT</version>
  177. </dependency>-->
  178. <dependency>
  179. <groupId>org.eclipse.californium</groupId>
  180. <artifactId>californium-core</artifactId>
  181. <version>2.0.0-M17</version>
  182. </dependency>
  183. </dependencies>
  184. <build>
  185. <plugins>
  186. <plugin>
  187. <groupId>org.apache.maven.plugins</groupId>
  188. <artifactId>maven-compiler-plugin</artifactId>
  189. <configuration>
  190. <source>${java-version}</source> <!-- 源代码使用的JDK版本 -->
  191. <target>${java-version}</target> <!-- 需要生成的目标class文件的编译版本 -->
  192. <encoding>${encoding}</encoding><!-- 字符集编码 -->
  193. </configuration>
  194. </plugin>
  195. <plugin>
  196. <groupId>org.springframework.boot</groupId>
  197. <artifactId>spring-boot-maven-plugin</artifactId>
  198. <executions>
  199. <execution>
  200. <goals>
  201. <goal>repackage</goal>
  202. </goals>
  203. </execution>
  204. </executions>
  205. </plugin>
  206. <plugin>
  207. <groupId>org.mybatis.generator</groupId>
  208. <artifactId>mybatis-generator-maven-plugin</artifactId>
  209. <version>1.4.2</version>
  210. <configuration>
  211. <!-- mybatis-generator 配置文件存放地址 -->
  212. <configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
  213. <!-- <overwrite>true</overwrite>-->
  214. </configuration>
  215. <dependencies>
  216. <dependency>
  217. <groupId>com.mysql</groupId>
  218. <artifactId>mysql-connector-j</artifactId>
  219. <version>${mysql.version}</version>
  220. </dependency>
  221. </dependencies>
  222. </plugin>
  223. </plugins>
  224. </build>
  225. </project>