pom.xml 8.2 KB

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