pom.xml 6.3 KB

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