pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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>dgtis-modules</artifactId>
  7. <groupId>com.dgtis</groupId>
  8. <version>2.2.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>dgtis-modules-data</artifactId>
  12. <description>
  13. dgtis-modules-data数据模块
  14. </description>
  15. <dependencies>
  16. <!-- SpringCloud Ailibaba Nacos -->
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  20. </dependency>
  21. <!-- SpringCloud Ailibaba Nacos Config -->
  22. <dependency>
  23. <groupId>com.alibaba.cloud</groupId>
  24. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  25. </dependency>
  26. <!-- SpringCloud Ailibaba Sentinel -->
  27. <dependency>
  28. <groupId>com.alibaba.cloud</groupId>
  29. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  30. </dependency>
  31. <!-- SpringBoot Actuator -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-actuator</artifactId>
  35. </dependency>
  36. <!-- Swagger -->
  37. <dependency>
  38. <groupId>io.springfox</groupId>
  39. <artifactId>springfox-swagger-ui</artifactId>
  40. <version>${swagger.fox.version}</version>
  41. </dependency>
  42. <!-- dgtis Common Security -->
  43. <dependency>
  44. <groupId>com.dgtis</groupId>
  45. <artifactId>dgtis-common-security</artifactId>
  46. </dependency>
  47. <!-- dgtis Common Datascope -->
  48. <dependency>
  49. <groupId>com.dgtis</groupId>
  50. <artifactId>dgtis-common-datascope</artifactId>
  51. </dependency>
  52. <!-- dgtis Common Log -->
  53. <dependency>
  54. <groupId>com.dgtis</groupId>
  55. <artifactId>dgtis-common-log</artifactId>
  56. </dependency>
  57. <!-- dgtis Common Swagger -->
  58. <dependency>
  59. <groupId>com.dgtis</groupId>
  60. <artifactId>dgtis-common-swagger</artifactId>
  61. </dependency>
  62. <!-- dgtis Common Redis-->
  63. <dependency>
  64. <groupId>com.dgtis</groupId>
  65. <artifactId>dgtis-common-redis</artifactId>
  66. </dependency>
  67. <!-- <dependency>
  68. <groupId>org.elasticsearch.client</groupId>
  69. <artifactId>transport</artifactId>
  70. <version>7.6.2</version>
  71. </dependency>-->
  72. <dependency>
  73. <groupId>org.apache.httpcomponents</groupId>
  74. <artifactId>httpclient</artifactId>
  75. <version>4.5.3</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.arronlong</groupId>
  79. <artifactId>httpclientutil</artifactId>
  80. <version>1.0.4</version>
  81. </dependency>
  82. <!-- 工具集-->
  83. <dependency>
  84. <groupId>cn.hutool</groupId>
  85. <artifactId>hutool-all</artifactId>
  86. <version>5.3.8</version>
  87. </dependency>
  88. <!--&lt;!&ndash; Java Low Level REST Client &ndash;&gt;
  89. <dependency>
  90. <groupId>org.elasticsearch.client</groupId>
  91. <artifactId>elasticsearch-rest-client</artifactId>
  92. <version>7.6.2</version>
  93. </dependency>
  94. &lt;!&ndash; Java High Level REST Client &ndash;&gt;
  95. <dependency>
  96. <groupId>org.elasticsearch.client</groupId>
  97. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  98. <version>7.6.2</version>
  99. </dependency>-->
  100. <dependency>
  101. <groupId>org.elasticsearch.client</groupId>
  102. <artifactId>rest</artifactId>
  103. <version>5.5.1</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>junit</groupId>
  107. <artifactId>junit</artifactId>
  108. </dependency>
  109. </dependencies>
  110. <build>
  111. <finalName>${project.artifactId}</finalName>
  112. <plugins>
  113. <plugin>
  114. <groupId>com.spotify</groupId>
  115. <artifactId>docker-maven-plugin</artifactId>
  116. </plugin>
  117. <plugin>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-maven-plugin</artifactId>
  120. <executions>
  121. <execution>
  122. <goals>
  123. <goal>repackage</goal>
  124. </goals>
  125. </execution>
  126. </executions>
  127. </plugin>
  128. </plugins>
  129. </build>
  130. </project>