pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. </properties>
  43. <dependencyManagement>
  44. <dependencies>
  45. <!-- fastjson -->
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>fastjson</artifactId>
  49. <version>${fastjson.version}</version>
  50. </dependency>
  51. <!-- mysql -->
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. <version>${mysql.version}</version>
  56. </dependency>
  57. <!--hutool-->
  58. <dependency>
  59. <groupId>cn.hutool</groupId>
  60. <artifactId>hutool-all</artifactId>
  61. <version>${hutool.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.httpcomponents</groupId>
  65. <artifactId>httpclient</artifactId>
  66. <version>${httpClient.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>junit</groupId>
  70. <artifactId>junit</artifactId>
  71. <scope>test</scope>
  72. <version>${junit.version}</version>
  73. </dependency>
  74. <!-- lombok -->
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. <version>${lombok.version}</version>
  79. <scope>compile</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.commons</groupId>
  83. <artifactId>commons-lang3</artifactId>
  84. <version>${commonsLang3.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>javax.servlet</groupId>
  88. <artifactId>javax.servlet-api</artifactId>
  89. <version>${servletApi.version}</version>
  90. </dependency>
  91. <!--Mybatis-Plus生成器依赖-->
  92. <dependency>
  93. <groupId>com.baomidou</groupId>
  94. <artifactId>mybatis-plus-generator</artifactId>
  95. <version>${mybatisPlusGenerator.version}</version>
  96. </dependency>
  97. <!--freemarker 模板引擎(没有用原生的模板引擎)-->
  98. <dependency>
  99. <groupId>org.freemarker</groupId>
  100. <artifactId>freemarker</artifactId>
  101. <version>${freemarker.version}</version>
  102. </dependency>
  103. <!--mybits-plus-->
  104. <dependency>
  105. <groupId>com.baomidou</groupId>
  106. <artifactId>mybatis-plus-boot-starter</artifactId>
  107. <version>${mybatisPlus.version}</version>
  108. </dependency>
  109. <!-- mybatis-plus-extension -->
  110. <dependency>
  111. <groupId>com.baomidou</groupId>
  112. <artifactId>mybatis-plus-extension</artifactId>
  113. <version>${mybatisPlusExtension.version}</version>
  114. </dependency>
  115. <!-- 连接池 -->
  116. <dependency>
  117. <!--自动配置-->
  118. <groupId>com.alibaba</groupId>
  119. <artifactId>druid-spring-boot-starter</artifactId>
  120. <version>${druid.version}</version>
  121. </dependency>
  122. <!-- velocity -->
  123. <dependency>
  124. <groupId>org.apache.velocity</groupId>
  125. <artifactId>velocity-engine-core</artifactId>
  126. <version>${velocity.version}</version>
  127. </dependency>
  128. <!-- freemarker -->
  129. <dependency>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-starter-freemarker</artifactId>
  132. </dependency>
  133. <!-- netty -->
  134. <dependency>
  135. <groupId>io.netty</groupId>
  136. <artifactId>netty-all</artifactId>
  137. <version>${netty.version}</version>
  138. </dependency>
  139. <!-- junit -->
  140. <dependency>
  141. <groupId>org.junit.platform</groupId>
  142. <artifactId>junit-platform-commons</artifactId>
  143. <version>${junitPlatformCommons.version}</version>
  144. </dependency>
  145. <!-- 二方包统一版本管理 -->
  146. <dependency>
  147. <groupId>com.huimv</groupId>
  148. <artifactId>huimv-common</artifactId>
  149. <version>${huimvCommon.version}</version>
  150. </dependency>
  151. <!-- 一方包统一版本管理 -->
  152. <dependency>
  153. <groupId>com.huimv</groupId>
  154. <artifactId>huimv-env-common</artifactId>
  155. <version>${huimvEnvCommon.version}</version>
  156. </dependency>
  157. </dependencies>
  158. </dependencyManagement>
  159. </project>