pom.xml 6.6 KB

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