pom.xml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <modules>
  6. <module>huimv-eartag2-input</module>
  7. <module>huimv-eartag2-manage</module>
  8. <module>huimv-eartag2-manage2</module>
  9. <module>gateway</module>
  10. <module>huimv-eartag2-common</module>
  11. <module>huimv-eartag2-device</module>
  12. <module>huimv-eartag2-eartag</module>
  13. <module>huimv-eartag2-admin</module>
  14. </modules>
  15. <parent>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>2.6.2</version>
  19. </parent>
  20. <groupId>com.huimv</groupId>
  21. <artifactId>huimv-eartag2-platform</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. <name>huimv-eartag2-platform</name>
  24. <description>Demo project for Spring Boot</description>
  25. <packaging>pom</packaging>
  26. <properties>
  27. <java.version>1.8</java.version>
  28. </properties>
  29. <dependencies>
  30. <!-- fastjson -->
  31. <dependency>
  32. <groupId>com.alibaba</groupId>
  33. <artifactId>fastjson</artifactId>
  34. <version>1.2.28</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <!-- lombok -->
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. <version>1.16.18</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <!--hutool-->
  53. <dependency>
  54. <groupId>cn.hutool</groupId>
  55. <artifactId>hutool-all</artifactId>
  56. <!-- <version>LATEST</version>-->
  57. <version>5.6.5</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.httpcomponents</groupId>
  61. <artifactId>httpclient</artifactId>
  62. <version>4.5.5</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>junit</groupId>
  66. <artifactId>junit</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.commons</groupId>
  71. <artifactId>commons-lang3</artifactId>
  72. <version>3.7</version>
  73. </dependency>
  74. <!-- JPA -->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-data-jpa</artifactId>
  78. </dependency>
  79. <!-- mysql -->
  80. <dependency>
  81. <groupId>mysql</groupId>
  82. <artifactId>mysql-connector-java</artifactId>
  83. </dependency>
  84. <!-- redis -->
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-data-redis</artifactId>
  88. </dependency>
  89. <!-- actuator -->
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-actuator</artifactId>
  93. </dependency>
  94. </dependencies>
  95. <!--&lt;!&ndash; <build>&ndash;&gt;-->
  96. <!--&lt;!&ndash; <plugins>&ndash;&gt;-->
  97. <!--&lt;!&ndash; &lt;!&ndash; &ndash;&gt;&ndash;&gt;-->
  98. <!--&lt;!&ndash; <plugin>&ndash;&gt;-->
  99. <!--&lt;!&ndash; <groupId>org.springframework.boot</groupId>&ndash;&gt;-->
  100. <!--&lt;!&ndash; <artifactId>spring-boot-maven-plugin</artifactId>&ndash;&gt;-->
  101. <!--&lt;!&ndash; </plugin>&ndash;&gt;-->
  102. <!--&lt;!&ndash; &lt;!&ndash; &ndash;&gt;&ndash;&gt;-->
  103. <!--&lt;!&ndash; <plugin>&ndash;&gt;-->
  104. <!--&lt;!&ndash; <groupId>org.apache.maven.plugins</groupId>&ndash;&gt;-->
  105. <!--&lt;!&ndash; <artifactId>maven-resources-plugin</artifactId>&ndash;&gt;-->
  106. <!--&lt;!&ndash; <version>2.6</version>&ndash;&gt;-->
  107. <!--&lt;!&ndash; </plugin>&ndash;&gt;-->
  108. <!--&lt;!&ndash; </plugins>&ndash;&gt;-->
  109. <!--&lt;!&ndash; </build>&ndash;&gt;-->
  110. <!-- <build>-->
  111. <!-- <plugins>-->
  112. <!--&lt;!&ndash; <plugin>&ndash;&gt;-->
  113. <!--&lt;!&ndash; <groupId>org.apache.maven.plugins</groupId>&ndash;&gt;-->
  114. <!--&lt;!&ndash; <artifactId>maven-compiler-plugin</artifactId>&ndash;&gt;-->
  115. <!--&lt;!&ndash; <version>3.1</version>&ndash;&gt;-->
  116. <!--&lt;!&ndash; <configuration>&ndash;&gt;-->
  117. <!--&lt;!&ndash; <source>${java.version}</source>&ndash;&gt;-->
  118. <!--&lt;!&ndash; <target>${java.version}</target>&ndash;&gt;-->
  119. <!--&lt;!&ndash; </configuration>&ndash;&gt;-->
  120. <!--&lt;!&ndash; </plugin>&ndash;&gt;-->
  121. <!--&lt;!&ndash; <plugin>&ndash;&gt;-->
  122. <!--&lt;!&ndash; <groupId>org.apache.maven.plugins</groupId>&ndash;&gt;-->
  123. <!--&lt;!&ndash; <artifactId>maven-resources-plugin</artifactId>&ndash;&gt;-->
  124. <!--&lt;!&ndash; <version>2.6</version>&ndash;&gt;-->
  125. <!--&lt;!&ndash; <configuration>&ndash;&gt;-->
  126. <!--&lt;!&ndash; <delimiters>&ndash;&gt;-->
  127. <!--&lt;!&ndash; <delimiter>@</delimiter>&ndash;&gt;-->
  128. <!--&lt;!&ndash; </delimiters>&ndash;&gt;-->
  129. <!--&lt;!&ndash; <useDefaultDelimiters>false</useDefaultDelimiters>&ndash;&gt;-->
  130. <!--&lt;!&ndash; </configuration>&ndash;&gt;-->
  131. <!--&lt;!&ndash; </plugin>&ndash;&gt;-->
  132. <!-- <plugin>-->
  133. <!-- <groupId>org.springframework.boot</groupId>-->
  134. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  135. <!--&lt;!&ndash; <configuration>&ndash;&gt;-->
  136. <!--&lt;!&ndash; <classifier>execute</classifier>&ndash;&gt;-->
  137. <!--&lt;!&ndash; </configuration>&ndash;&gt;-->
  138. <!-- </plugin>-->
  139. <!-- </plugins>-->
  140. <!-- <resources>-->
  141. <!-- <resource>-->
  142. <!-- <directory>src/main/webapp</directory>-->
  143. <!-- <filtering>false</filtering>-->
  144. <!-- </resource>-->
  145. <!-- <resource>-->
  146. <!-- <directory>src/main/resources</directory>-->
  147. <!-- <filtering>true</filtering>-->
  148. <!-- </resource>-->
  149. <!-- <resource>-->
  150. <!-- <directory>src/main/java</directory>-->
  151. <!-- <includes>-->
  152. <!-- <include>**/*.xml</include>-->
  153. <!-- </includes>-->
  154. <!-- </resource>-->
  155. <!-- </resources>-->
  156. <!-- </build>-->
  157. <!-- <profiles>-->
  158. <!-- <profile>-->
  159. <!-- <id>local</id>-->
  160. <!-- <properties>-->
  161. <!-- <spring.active>local</spring.active>-->
  162. <!-- </properties>-->
  163. <!-- </profile>-->
  164. <!-- <profile>-->
  165. <!-- <id>dev</id>-->
  166. <!-- <properties>-->
  167. <!-- <spring.active>dev</spring.active>-->
  168. <!-- </properties>-->
  169. <!-- </profile>-->
  170. <!-- <profile>-->
  171. <!-- <id>prod</id>-->
  172. <!-- <properties>-->
  173. <!-- <spring.active>prod</spring.active>-->
  174. <!-- </properties>-->
  175. <!-- <activation>-->
  176. <!-- <activeByDefault>true</activeByDefault>-->
  177. <!-- </activation>-->
  178. <!-- </profile>-->
  179. <!-- </profiles>-->
  180. </project>