pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. <!-- Mysql Connector -->
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. </dependency>
  47. <!-- dgtis Common Security -->
  48. <dependency>
  49. <groupId>com.dgtis</groupId>
  50. <artifactId>dgtis-common-security</artifactId>
  51. </dependency>
  52. <!-- dgtis Common Datascope -->
  53. <dependency>
  54. <groupId>com.dgtis</groupId>
  55. <artifactId>dgtis-common-datascope</artifactId>
  56. </dependency>
  57. <!-- dgtis Common Log -->
  58. <dependency>
  59. <groupId>com.dgtis</groupId>
  60. <artifactId>dgtis-common-log</artifactId>
  61. </dependency>
  62. <!-- dgtis Common Swagger -->
  63. <dependency>
  64. <groupId>com.dgtis</groupId>
  65. <artifactId>dgtis-common-swagger</artifactId>
  66. </dependency>
  67. <!-- dgtis Common Redis-->
  68. <dependency>
  69. <groupId>com.dgtis</groupId>
  70. <artifactId>dgtis-common-redis</artifactId>
  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. <dependency>
  89. <groupId>org.elasticsearch.client</groupId>
  90. <artifactId>elasticsearch-rest-client</artifactId>
  91. <version>7.10.0</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>junit</groupId>
  95. <artifactId>junit</artifactId>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <finalName>${project.artifactId}</finalName>
  100. <plugins>
  101. <plugin>
  102. <groupId>com.spotify</groupId>
  103. <artifactId>docker-maven-plugin</artifactId>
  104. </plugin>
  105. <plugin>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-maven-plugin</artifactId>
  108. <executions>
  109. <execution>
  110. <goals>
  111. <goal>repackage</goal>
  112. </goals>
  113. </execution>
  114. </executions>
  115. </plugin>
  116. </plugins>
  117. </build>
  118. </project>