pom.xml 7.7 KB

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