pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.4.1</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <packaging>jar</packaging>
  13. <groupId>com.huimv</groupId>
  14. <artifactId>huimv-env-common</artifactId>
  15. <version>0.0.7-SNAPSHOT</version>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <maven.compile>1.8</maven.compile>
  19. <druid.version>1.1.14</druid.version>
  20. <mysql.version>6.0.6</mysql.version>
  21. <junit.version>4.13.2</junit.version>
  22. <hutool.version>5.8.1</hutool.version>
  23. <velocity.version>2.0</velocity.version>
  24. <lombok.version>1.16.18</lombok.version>
  25. <netty.version>4.1.45.Final</netty.version>
  26. <fastjson.version>1.2.28</fastjson.version>
  27. <httpClient.version>4.5.5</httpClient.version>
  28. <servletApi.version>3.1.0</servletApi.version>
  29. <freemarker.version>2.3.31</freemarker.version>
  30. <commonsLang3.version>3.7</commonsLang3.version>
  31. <mybatisPlus.version>3.4.3.4</mybatisPlus.version>
  32. <huimvCommon.version>0.0.6-SNAPSHOT</huimvCommon.version>
  33. <huimvEnvCommon.version>0.0.1-SNAPSHOT</huimvEnvCommon.version>
  34. <junitPlatformCommons.version>1.8.2</junitPlatformCommons.version>
  35. <mybatisPlusGenerator.version>3.3.2</mybatisPlusGenerator.version>
  36. <mybatisPlusExtension.version>3.5.2</mybatisPlusExtension.version>
  37. <captcha.version>0.0.6</captcha.version>
  38. <captcha.reids.version>0.0.6</captcha.reids.version>
  39. <net.sf.json-lib.version>2.2.3</net.sf.json-lib.version>
  40. <com.belerweb.version>2.5.1</com.belerweb.version>
  41. <io.jsonwebtoken.version>0.9.1</io.jsonwebtoken.version>
  42. <com.auth0.version>3.3.0</com.auth0.version>
  43. </properties>
  44. <dependencies>
  45. <dependency>
  46. <groupId>io.jsonwebtoken</groupId>
  47. <artifactId>jjwt</artifactId>
  48. <version>${io.jsonwebtoken.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.auth0</groupId>
  52. <artifactId>java-jwt</artifactId>
  53. <version>${com.auth0.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.dustlight.captcha</groupId>
  57. <artifactId>captcha-core</artifactId>
  58. <version>${captcha.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>cn.dustlight.captcha</groupId>
  62. <artifactId>redis-store</artifactId>
  63. <version>${captcha.reids.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.belerweb</groupId>
  67. <artifactId>pinyin4j</artifactId>
  68. <version>${com.belerweb.version}</version>
  69. </dependency>
  70. <!-- fastjson -->
  71. <dependency>
  72. <groupId>com.alibaba</groupId>
  73. <artifactId>fastjson</artifactId>
  74. <version>${fastjson.version}</version>
  75. </dependency>
  76. <!-- mysql -->
  77. <dependency>
  78. <groupId>mysql</groupId>
  79. <artifactId>mysql-connector-java</artifactId>
  80. <version>${mysql.version}</version>
  81. </dependency>
  82. <!--hutool-->
  83. <dependency>
  84. <groupId>cn.hutool</groupId>
  85. <artifactId>hutool-all</artifactId>
  86. <version>${hutool.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.httpcomponents</groupId>
  90. <artifactId>httpclient</artifactId>
  91. <version>${httpClient.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>junit</groupId>
  95. <artifactId>junit</artifactId>
  96. <scope>test</scope>
  97. <version>${junit.version}</version>
  98. </dependency>
  99. <!-- lombok -->
  100. <dependency>
  101. <groupId>org.projectlombok</groupId>
  102. <artifactId>lombok</artifactId>
  103. <version>${lombok.version}</version>
  104. <scope>compile</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.commons</groupId>
  108. <artifactId>commons-lang3</artifactId>
  109. <version>${commonsLang3.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>javax.servlet</groupId>
  113. <artifactId>javax.servlet-api</artifactId>
  114. <version>${servletApi.version}</version>
  115. </dependency>
  116. <!--Mybatis-Plus生成器依赖-->
  117. <dependency>
  118. <groupId>com.baomidou</groupId>
  119. <artifactId>mybatis-plus-generator</artifactId>
  120. <version>${mybatisPlusGenerator.version}</version>
  121. </dependency>
  122. <!--freemarker 模板引擎(没有用原生的模板引擎)-->
  123. <dependency>
  124. <groupId>org.freemarker</groupId>
  125. <artifactId>freemarker</artifactId>
  126. <version>${freemarker.version}</version>
  127. </dependency>
  128. <!--mybits-plus-->
  129. <dependency>
  130. <groupId>com.baomidou</groupId>
  131. <artifactId>mybatis-plus-boot-starter</artifactId>
  132. <version>${mybatisPlus.version}</version>
  133. </dependency>
  134. <!-- mybatis-plus-extension -->
  135. <dependency>
  136. <groupId>com.baomidou</groupId>
  137. <artifactId>mybatis-plus-extension</artifactId>
  138. <version>${mybatisPlusExtension.version}</version>
  139. </dependency>
  140. <!-- 连接池 -->
  141. <dependency>
  142. <!--自动配置-->
  143. <groupId>com.alibaba</groupId>
  144. <artifactId>druid-spring-boot-starter</artifactId>
  145. <version>${druid.version}</version>
  146. </dependency>
  147. <!-- velocity -->
  148. <dependency>
  149. <groupId>org.apache.velocity</groupId>
  150. <artifactId>velocity-engine-core</artifactId>
  151. <version>${velocity.version}</version>
  152. </dependency>
  153. <!-- freemarker -->
  154. <dependency>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-starter-freemarker</artifactId>
  157. </dependency>
  158. <!-- netty -->
  159. <dependency>
  160. <groupId>io.netty</groupId>
  161. <artifactId>netty-all</artifactId>
  162. <version>${netty.version}</version>
  163. </dependency>
  164. <!-- junit -->
  165. <dependency>
  166. <groupId>org.junit.platform</groupId>
  167. <artifactId>junit-platform-commons</artifactId>
  168. <version>${junitPlatformCommons.version}</version>
  169. </dependency>
  170. <!-- 二方包统一版本管理 -->
  171. <dependency>
  172. <groupId>com.huimv</groupId>
  173. <artifactId>huimv-common</artifactId>
  174. <version>${huimvCommon.version}</version>
  175. </dependency>
  176. <!-- 一方包统一版本管理 -->
  177. <dependency>
  178. <groupId>com.huimv</groupId>
  179. <artifactId>huimv-env-common</artifactId>
  180. <version>${huimvEnvCommon.version}</version>
  181. </dependency>
  182. </dependencies>
  183. </project>