123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.itheima</groupId>
- <artifactId>wukuang-demo</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>xsky-service</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>3.5.3.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.dameng/DmJdbcDriver18 -->
- <!-- docker load -i dm8_20220822_rev166351_x86_rh6_64_ctm.tar-->
- <!--docker run -d -p 5236:5236 --restart=always --name dm8_single --privileged=true -e PAGE_SIZE=16 \-->
- <!-- -e LD_LIBRARY_PATH=/opt/dmdbms/bin -e INSTANCE_NAME=dm8_single \-->
- <!-- -v /data/dm8_01:/opt/dmdbms/data dm8_single:v8.1.2.128_ent_x86_64_ctm_pack4-->
- <!--docker logs -f dm8_01-->
- <dependency>
- <groupId>com.dameng</groupId>
- <artifactId>DmJdbcDriver18</artifactId>
- <version>8.1.3.140</version>
- </dependency>
- <dependency>
- <groupId>com.itheima</groupId>
- <artifactId>file-starter</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <!-- HttpClient -->
- <!-- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- </dependency>-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.8.18</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.3.2</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents.client5</groupId>
- <artifactId>httpclient5</artifactId>
- <version>5.1.3</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents.client5</groupId>
- <artifactId>httpclient5-fluent</artifactId>
- <version>5.1.3</version>
- </dependency>
- <!-- Apache HttpClient 4.5.x (请检查并使用最新版本) -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.13</version> <!-- 请检查并使用最新版本 -->
- </dependency>
- <!-- Apache HttpClient SSL支持(如果需要) -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient-osgi</artifactId>
- <version>4.5.13</version> <!-- 通常与httpclient版本相同 -->
- <scope>provided</scope> <!-- 如果你不是在OSGi环境中运行,可以省略这个依赖 -->
- </dependency>
- <!-- 如果你需要处理HTTP/2,可以添加这个依赖(可选) -->
- <!-- <dependency>-->
- <!-- <groupId>org.apache.httpcomponents.httpcore-nio</groupId>-->
- <!-- <artifactId>httpcore-nio</artifactId>-->
- <!-- <version>4.4.14</version> <!– 请检查并使用与httpclient兼容的版本 –>-->
- <!-- </dependency>-->
- <!-- 如果你使用PoolingHttpClientConnectionManager,你可能还需要这个依赖 -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpcore</artifactId>
- <version>4.4.14</version> <!-- 请检查并使用与httpclient兼容的版本 -->
- </dependency>
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>2.0.24</version>
- </dependency>
- <!-- 如果你需要处理cookies,可以添加这个依赖(可选) -->
- <!-- <dependency>-->
- <!-- <groupId>org.apache.httpcomponents</groupId>-->
- <!-- <artifactId>httpclient-client</artifactId>-->
- <!-- <version>4.5.13</version> <!– 请检查并使用与httpclient相同的版本 –>-->
- <!-- </dependency>-->
- </dependencies>
- </project>
|