pom.xml 8.5 KB

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