Skip to content

Commit c0ec55d

Browse files
author
codezhang
committed
gen umem
1 parent 64fd48b commit c0ec55d

189 files changed

Lines changed: 13820 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<module>ucloud-sdk-java-udpn</module>
2121
<module>ucloud-sdk-java-pathx</module>
2222
<module>ucloud-sdk-java-usql</module>
23+
<module>ucloud-sdk-java-umem</module>
2324
</modules>
2425

2526
<name>ucloud-sdk-java</name>

ucloud-sdk-java-umem/pom.xml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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+
<parent>
6+
<artifactId>ucloud-sdk-java</artifactId>
7+
<groupId>cn.ucloud</groupId>
8+
<version>0.6.3.1-release</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>ucloud-sdk-java-umem</artifactId>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>cn.ucloud</groupId>
17+
<artifactId>ucloud-sdk-java-common</artifactId>
18+
<version>0.6.3.1-release</version>
19+
</dependency>
20+
21+
<dependency>
22+
<groupId>org.hibernate</groupId>
23+
<artifactId>hibernate-validator</artifactId>
24+
</dependency>
25+
26+
<dependency>
27+
<groupId>com.google.code.gson</groupId>
28+
<artifactId>gson</artifactId>
29+
</dependency>
30+
31+
<dependency>
32+
<groupId>org.apache.commons</groupId>
33+
<artifactId>commons-lang3</artifactId>
34+
</dependency>
35+
36+
<dependency>
37+
<groupId>junit</groupId>
38+
<artifactId>junit</artifactId>
39+
<scope>test</scope>
40+
</dependency>
41+
42+
<dependency>
43+
<groupId>org.slf4j</groupId>
44+
<artifactId>slf4j-simple</artifactId>
45+
<scope>provided</scope>
46+
</dependency>
47+
48+
<dependency>
49+
<groupId>org.skyscreamer</groupId>
50+
<artifactId>jsonassert</artifactId>
51+
<scope>test</scope>
52+
</dependency>
53+
</dependencies>
54+
</project>

0 commit comments

Comments
 (0)