Skip to content

Commit 64be610

Browse files
committed
update
2 parents d2e1c67 + 2013a29 commit 64be610

File tree

251 files changed

+45384
-2
lines changed

Some content is hidden

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

251 files changed

+45384
-2
lines changed

meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"lasted": "0.1.107",
3-
"meta_commit": "527109139e715568a9efad71c417a0333f624a57"
4-
}
3+
"meta_commit": "56b1982053425dd43b77d9e3c616bbe5c4c66a3c"
4+
}

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,5 +236,6 @@
236236
<module>volcengine-java-sdk-rdsmssql</module>
237237
<module>volcengine-java-sdk-veiapi</module>
238238
<module>volcengine-java-sdk-privatelink</module>
239+
<module>volcengine-java-sdk-dcdn</module>
239240
</modules>
240241
</project>

volcengine-java-sdk-bom/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,12 @@
181181
<optional>false</optional>
182182
<version>${project.version}</version>
183183
</dependency>
184+
<dependency>
185+
<groupId>com.volcengine</groupId>
186+
<artifactId>volcengine-java-sdk-dcdn</artifactId>
187+
<optional>false</optional>
188+
<version>${project.version}</version>
189+
</dependency>
184190
</dependencies>
185191
</dependencyManagement>
186192
</project>

volcengine-java-sdk-dcdn/pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<parent>
4+
<artifactId>volcengine-java-sdk</artifactId>
5+
<groupId>com.volcengine</groupId>
6+
<version>0.1.107</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>volcengine-java-sdk-dcdn</artifactId>
11+
<dependencies>
12+
<dependency>
13+
<groupId>com.volcengine</groupId>
14+
<artifactId>volcengine-java-sdk-core</artifactId>
15+
<version>${project.version}</version>
16+
</dependency>
17+
</dependencies>
18+
<build>
19+
<plugins>
20+
<plugin>
21+
<groupId>org.apache.maven.plugins</groupId>
22+
<artifactId>maven-source-plugin</artifactId>
23+
<configuration>
24+
<excludes>
25+
<exclude>com/volcengine/dcdn/examples/**</exclude>
26+
</excludes>
27+
</configuration>
28+
</plugin>
29+
<plugin>
30+
<groupId>org.apache.maven.plugins</groupId>
31+
<artifactId>maven-jar-plugin</artifactId>
32+
<configuration>
33+
<excludes>
34+
<exclude>com/volcengine/dcdn/examples/**</exclude>
35+
</excludes>
36+
</configuration>
37+
</plugin>
38+
</plugins>
39+
</build>
40+
</project>

0 commit comments

Comments
 (0)