-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
61 lines (61 loc) · 2.15 KB
/
pom.xml
File metadata and controls
61 lines (61 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<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>AxT-Team</groupId>
<artifactId>uapi-sdk-java</artifactId>
<version>0.1.17</version>
<properties>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
</properties>
<name>UAPI SDK for Java</name>
<description>Official Java SDK for UAPI / uapis.cn — typed Java 17+ wrapper around 100+ free public-API endpoints (network, text, image, social, translation, search). Generated from the live OpenAPI 3.1 spec.</description>
<url>https://uapis.cn/docs/sdk/java</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/AxT-Team/uapi-sdk-java/blob/main/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<id>uapi</id>
<name>UAPI</name>
<email>dev@uapis.cn</email>
<organization>AxT-Team</organization>
<organizationUrl>https://uapis.cn</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/AxT-Team/uapi-sdk-java.git</connection>
<developerConnection>scm:git:ssh://github.com:AxT-Team/uapi-sdk-java.git</developerConnection>
<url>https://github.com/AxT-Team/uapi-sdk-java/tree/main</url>
</scm>
<dependencies>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.12.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
</plugin>
</plugins>
</build>
</project>