pom.xml 5.0 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. <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>com.baomidou</groupId>
  37. <artifactId>mybatis-plus</artifactId>
  38. <version>3.5.3.1</version>
  39. <systemPath>${project.basedir}/lib/mybatis-plus-3.1.0.jar</systemPath>
  40. </dependency>-->
  41. <dependency>
  42. <groupId>org.apache.commons</groupId>
  43. <artifactId>commons-lang3</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>junit</groupId>
  51. <artifactId>junit</artifactId>
  52. <scope>test</scope>
  53. <version>4.12</version>
  54. </dependency>
  55. <!--<dependency>
  56. <groupId>com.dameng</groupId>
  57. <artifactId>DmJdbcDriver18</artifactId>
  58. <version>8.1.3.140</version>
  59. </dependency>-->
  60. <!--添加数据库驱动安装包-->
  61. <dependency>
  62. <groupId>com.dameng</groupId>
  63. <artifactId>Dm8JdbcDriver18</artifactId>
  64. <version>8.1.1.193</version>
  65. <scope>system</scope>
  66. <systemPath>${project.basedir}/lib/DmJdbcDriver18.jar</systemPath>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.itheima</groupId>
  70. <artifactId>file-starter</artifactId>
  71. <version>1.0-SNAPSHOT</version>
  72. </dependency>
  73. <!-- HttpClient -->
  74. <!-- <dependency>
  75. <groupId>org.apache.httpcomponents</groupId>
  76. <artifactId>httpclient</artifactId>
  77. </dependency>-->
  78. <dependency>
  79. <groupId>cn.hutool</groupId>
  80. <artifactId>hutool-all</artifactId>
  81. <version>5.8.18</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.commons</groupId>
  85. <artifactId>commons-io</artifactId>
  86. <version>1.3.2</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.httpcomponents.client5</groupId>
  90. <artifactId>httpclient5</artifactId>
  91. <version>5.1.3</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.httpcomponents.client5</groupId>
  95. <artifactId>httpclient5-fluent</artifactId>
  96. <version>5.1.3</version>
  97. </dependency>
  98. <!-- Apache HttpClient 4.5.x (请检查并使用最新版本) -->
  99. <dependency>
  100. <groupId>org.apache.httpcomponents</groupId>
  101. <artifactId>httpclient</artifactId>
  102. <version>4.5.13</version> <!-- 请检查并使用最新版本 -->
  103. </dependency>
  104. <!-- Apache HttpClient SSL支持(如果需要) -->
  105. <dependency>
  106. <groupId>org.apache.httpcomponents</groupId>
  107. <artifactId>httpclient-osgi</artifactId>
  108. <version>4.5.13</version> <!-- 通常与httpclient版本相同 -->
  109. <scope>provided</scope> <!-- 如果你不是在OSGi环境中运行,可以省略这个依赖 -->
  110. </dependency>
  111. <!-- 如果你使用PoolingHttpClientConnectionManager,你可能还需要这个依赖 -->
  112. <dependency>
  113. <groupId>org.apache.httpcomponents</groupId>
  114. <artifactId>httpcore</artifactId>
  115. <version>4.4.14</version> <!-- 请检查并使用与httpclient兼容的版本 -->
  116. </dependency>
  117. <dependency>
  118. <groupId>com.alibaba</groupId>
  119. <artifactId>fastjson</artifactId>
  120. <version>2.0.24</version>
  121. </dependency>
  122. </dependencies>
  123. </project>