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