pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. <exclusions>
  82. <exclusion>
  83. <groupId>log4j</groupId>
  84. <artifactId>log4j</artifactId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <!-- 工具集-->
  89. <dependency>
  90. <groupId>cn.hutool</groupId>
  91. <artifactId>hutool-all</artifactId>
  92. <version>5.3.8</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.elasticsearch.client</groupId>
  96. <artifactId>elasticsearch-rest-client</artifactId>
  97. <version>7.10.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>junit</groupId>
  101. <artifactId>junit</artifactId>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <finalName>${project.artifactId}</finalName>
  106. <plugins>
  107. <plugin>
  108. <groupId>com.spotify</groupId>
  109. <artifactId>docker-maven-plugin</artifactId>
  110. </plugin>
  111. <plugin>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-maven-plugin</artifactId>
  114. <executions>
  115. <execution>
  116. <goals>
  117. <goal>repackage</goal>
  118. </goals>
  119. </execution>
  120. </executions>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>