pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. <parent>
  6. <artifactId>huimv-farm-datacenter</artifactId>
  7. <groupId>com.huimv</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>huimv-farm-eartag</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-test</artifactId>
  20. <scope>test</scope>
  21. </dependency>
  22. <!-- fastjson -->
  23. <dependency>
  24. <groupId>com.alibaba</groupId>
  25. <artifactId>fastjson</artifactId>
  26. <version>1.2.28</version>
  27. </dependency>
  28. <!-- JPA -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-data-jpa</artifactId>
  32. </dependency>
  33. <!-- mysql -->
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. </dependency>
  38. <!-- redis -->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-data-redis</artifactId>
  42. </dependency>
  43. <!-- lombok -->
  44. <dependency>
  45. <groupId>org.projectlombok</groupId>
  46. <artifactId>lombok</artifactId>
  47. <version>1.16.18</version>
  48. <scope>provided</scope>
  49. </dependency>
  50. <!--hutool-->
  51. <dependency>
  52. <groupId>cn.hutool</groupId>
  53. <artifactId>hutool-all</artifactId>
  54. <!-- <version>LATEST</version>-->
  55. <version>5.6.5</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.httpcomponents</groupId>
  59. <artifactId>httpclient</artifactId>
  60. <version>4.5.5</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>junit</groupId>
  64. <artifactId>junit</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.commons</groupId>
  69. <artifactId>commons-lang3</artifactId>
  70. <version>3.7</version>
  71. </dependency>
  72. <!-- -->
  73. <!-- 排除Tomcat容器 -->
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-web</artifactId>
  77. <!-- 移除掉默认支持的 Tomcat -->
  78. <exclusions>
  79. <exclusion>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-tomcat</artifactId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. <!-- 添加 Undertow 容器 -->
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-undertow</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-test</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. <!-- eartag2-common -->
  96. <!-- <dependency>-->
  97. <!-- <groupId>com.huimv</groupId>-->
  98. <!-- <artifactId>huimv-eartag2-common</artifactId>-->
  99. <!-- <version>0.0.1-SNAPSHOT</version>-->
  100. <!-- </dependency>-->
  101. <!-- netty -->
  102. <dependency>
  103. <groupId>io.netty</groupId>
  104. <artifactId>netty-all</artifactId>
  105. <version>4.1.45.Final</version>
  106. </dependency>
  107. <!--hutool-->
  108. <!-- <dependency>-->
  109. <!-- <groupId>cn.hutool</groupId>-->
  110. <!-- <artifactId>hutool-all</artifactId>-->
  111. <!-- <version>5.6.5</version>-->
  112. <!-- </dependency>-->
  113. <!-- httpclient -->
  114. <!-- <dependency>-->
  115. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  116. <!-- <artifactId>httpclient</artifactId>-->
  117. <!-- <version>4.5.5</version>-->
  118. <!-- </dependency>-->
  119. <!-- <dependency>-->
  120. <!-- <groupId>junit</groupId>-->
  121. <!-- <artifactId>junit</artifactId>-->
  122. <!-- <scope>test</scope>-->
  123. <!-- </dependency>-->
  124. <!--rabbitmq-->
  125. <dependency>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-starter-amqp</artifactId>
  128. </dependency>
  129. <!-- actuator -->
  130. <dependency>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-starter-actuator</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.huimv</groupId>
  136. <artifactId>huimv-common</artifactId>
  137. <version>0.0.6-SNAPSHOT</version>
  138. </dependency>
  139. </dependencies>
  140. </project>