pom.xml 6.5 KB

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