pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. </dependencies>
  90. <!-- <build>-->
  91. <!-- <plugins>-->
  92. <!-- &lt;!&ndash; &ndash;&gt;-->
  93. <!-- <plugin>-->
  94. <!-- <groupId>org.springframework.boot</groupId>-->
  95. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  96. <!-- </plugin>-->
  97. <!-- &lt;!&ndash; &ndash;&gt;-->
  98. <!-- <plugin>-->
  99. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  100. <!-- <artifactId>maven-resources-plugin</artifactId>-->
  101. <!-- <version>2.6</version>-->
  102. <!-- </plugin>-->
  103. <!-- </plugins>-->
  104. <!-- </build>-->
  105. <build>
  106. <plugins>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-compiler-plugin</artifactId>
  110. <version>3.1</version>
  111. <configuration>
  112. <source>${java.version}</source>
  113. <target>${java.version}</target>
  114. </configuration>
  115. </plugin>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-resources-plugin</artifactId>
  119. <version>2.6</version>
  120. <configuration>
  121. <delimiters>
  122. <delimiter>@</delimiter>
  123. </delimiters>
  124. <useDefaultDelimiters>false</useDefaultDelimiters>
  125. </configuration>
  126. </plugin>
  127. </plugins>
  128. <resources>
  129. <resource>
  130. <directory>src/main/webapp</directory>
  131. <filtering>false</filtering>
  132. </resource>
  133. <resource>
  134. <directory>src/main/resources</directory>
  135. <filtering>true</filtering>
  136. </resource>
  137. <resource>
  138. <directory>src/main/java</directory>
  139. <includes>
  140. <include>**/*.xml</include>
  141. </includes>
  142. </resource>
  143. </resources>
  144. </build>
  145. <!-- <profiles>-->
  146. <!-- <profile>-->
  147. <!-- <id>local</id>-->
  148. <!-- <properties>-->
  149. <!-- <spring.active>local</spring.active>-->
  150. <!-- </properties>-->
  151. <!-- </profile>-->
  152. <!-- <profile>-->
  153. <!-- <id>dev</id>-->
  154. <!-- <properties>-->
  155. <!-- <spring.active>dev</spring.active>-->
  156. <!-- </properties>-->
  157. <!-- </profile>-->
  158. <!-- <profile>-->
  159. <!-- <id>prod</id>-->
  160. <!-- <properties>-->
  161. <!-- <spring.active>prod</spring.active>-->
  162. <!-- </properties>-->
  163. <!-- <activation>-->
  164. <!-- <activeByDefault>true</activeByDefault>-->
  165. <!-- </activation>-->
  166. <!-- </profile>-->
  167. <!-- </profiles>-->
  168. </project>