123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?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>
- <groupId>com.ueiibi.shop</groupId>
- <artifactId>shop-sdk</artifactId>
- <version>1.0.0-release</version>
- <packaging>jar</packaging>
- <name>ueiibi Shop SDK</name>
- <description>Java SDK for interacting with ueiibi Shop APIs.</description>
- <url>https://github.com/ibiteam/shop-sdk</url>
- <licenses>
- <license>
- <name>MIT License</name>
- <url>https://opensource.org/licenses/MIT</url>
- </license>
- </licenses>
- <scm>
- <url>https://github.com/ibiteam/shop-sdk</url>
- <connection>scm:git:git://github.com/ibiteam/shop-sdk.git</connection>
- <developerConnection>scm:git:ssh://git@github.com/ibiteam/shop-sdk.git</developerConnection>
- </scm>
- <developers>
- <developer>
- <id>ueiibi</id>
- <name>北京国联视讯信息技术股份有限公司</name>
- <email>opensource-dd@ueiibi.com</email>
- </developer>
- </developers>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <!-- Apache HttpClient Fluent API -->
- <dependency>
- <groupId>org.apache.httpcomponents.client5</groupId>
- <artifactId>httpclient5-fluent</artifactId>
- <version>5.2.1</version>
- </dependency>
- <!-- Jackson Databind (JSON 解析) -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.15.3</version>
- </dependency>
- <!-- Apache Commons Codec (可选,用于签名等功能) -->
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>1.15</version>
- </dependency>
- <!-- 单元测试依赖 -->
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter</artifactId>
- <version>5.9.3</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <artifactId>fastjson2-extension</artifactId>
- <groupId>com.alibaba.fastjson2</groupId>
- <version>2.0.53</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId> <!-- 或 logback-classic -->
- <version>1.7.36</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.11.0</version>
- <configuration>
- <source>${maven.compiler.source}</source>
- <target>${maven.compiler.target}</target>
- <encoding>${project.build.sourceEncoding}</encoding>
- </configuration>
- </plugin>
- <!-- 配置 Maven Surefire 插件来运行单元测试 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>3.0.0-M5</version>
- <configuration>
- <includes>
- <include>**/*Test.java</include>
- </includes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|