pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.itheima</groupId>
  8. <artifactId>wukuang-demo</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>xsky-service</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-validation</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-redis</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.baomidou</groupId>
  32. <artifactId>mybatis-plus-boot-starter</artifactId>
  33. <version>3.5.3.1</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.commons</groupId>
  37. <artifactId>commons-lang3</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>junit</groupId>
  45. <artifactId>junit</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/com.dameng/DmJdbcDriver18 -->
  49. <!-- docker load -i dm8_20220822_rev166351_x86_rh6_64_ctm.tar-->
  50. <!--docker run -d -p 5236:5236 &#45;&#45;restart=always &#45;&#45;name dm8_single &#45;&#45;privileged=true -e PAGE_SIZE=16 \-->
  51. <!-- -e LD_LIBRARY_PATH=/opt/dmdbms/bin -e INSTANCE_NAME=dm8_single \-->
  52. <!-- -v /data/dm8_01:/opt/dmdbms/data dm8_single:v8.1.2.128_ent_x86_64_ctm_pack4-->
  53. <!--docker logs -f dm8_01-->
  54. <dependency>
  55. <groupId>com.dameng</groupId>
  56. <artifactId>DmJdbcDriver18</artifactId>
  57. <version>8.1.3.140</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.itheima</groupId>
  61. <artifactId>file-starter</artifactId>
  62. <version>1.0-SNAPSHOT</version>
  63. </dependency>
  64. <!-- HttpClient -->
  65. <!-- <dependency>
  66. <groupId>org.apache.httpcomponents</groupId>
  67. <artifactId>httpclient</artifactId>
  68. </dependency>-->
  69. <dependency>
  70. <groupId>cn.hutool</groupId>
  71. <artifactId>hutool-all</artifactId>
  72. <version>5.8.18</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-io</artifactId>
  77. <version>1.3.2</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.httpcomponents.client5</groupId>
  81. <artifactId>httpclient5</artifactId>
  82. <version>5.1.3</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.httpcomponents.client5</groupId>
  86. <artifactId>httpclient5-fluent</artifactId>
  87. <version>5.1.3</version>
  88. </dependency>
  89. <!-- Apache HttpClient 4.5.x (请检查并使用最新版本) -->
  90. <dependency>
  91. <groupId>org.apache.httpcomponents</groupId>
  92. <artifactId>httpclient</artifactId>
  93. <version>4.5.13</version> <!-- 请检查并使用最新版本 -->
  94. </dependency>
  95. <!-- Apache HttpClient SSL支持(如果需要) -->
  96. <dependency>
  97. <groupId>org.apache.httpcomponents</groupId>
  98. <artifactId>httpclient-osgi</artifactId>
  99. <version>4.5.13</version> <!-- 通常与httpclient版本相同 -->
  100. <scope>provided</scope> <!-- 如果你不是在OSGi环境中运行,可以省略这个依赖 -->
  101. </dependency>
  102. <!-- 如果你需要处理HTTP/2,可以添加这个依赖(可选) -->
  103. <!-- <dependency>-->
  104. <!-- <groupId>org.apache.httpcomponents.httpcore-nio</groupId>-->
  105. <!-- <artifactId>httpcore-nio</artifactId>-->
  106. <!-- <version>4.4.14</version> &lt;!&ndash; 请检查并使用与httpclient兼容的版本 &ndash;&gt;-->
  107. <!-- </dependency>-->
  108. <!-- 如果你使用PoolingHttpClientConnectionManager,你可能还需要这个依赖 -->
  109. <dependency>
  110. <groupId>org.apache.httpcomponents</groupId>
  111. <artifactId>httpcore</artifactId>
  112. <version>4.4.14</version> <!-- 请检查并使用与httpclient兼容的版本 -->
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-httpclient</groupId>
  116. <artifactId>commons-httpclient</artifactId>
  117. <version>3.1</version>
  118. </dependency>
  119. <!-- 如果你需要处理cookies,可以添加这个依赖(可选) -->
  120. <!-- <dependency>-->
  121. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  122. <!-- <artifactId>httpclient-client</artifactId>-->
  123. <!-- <version>4.5.13</version> &lt;!&ndash; 请检查并使用与httpclient相同的版本 &ndash;&gt;-->
  124. <!-- </dependency>-->
  125. </dependencies>
  126. </project>