Skip to content

Commit 87498ca

Browse files
author
BitsAdmin
committed
Merge branch 'dns-Java-2018-08-01-online-832-2024_12_10_15_20_35' into 'integration_2024-12-16_638911295234'
feat: [development task] dns-832-Java (916203) See merge request iaasng/volcengine-java-sdk!321
2 parents d494c74 + 36c94b2 commit 87498ca

File tree

76 files changed

+17575
-0
lines changed

Some content is hidden

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

76 files changed

+17575
-0
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,5 +260,6 @@
260260
<module>volcengine-java-sdk-advdefence</module>
261261
<module>volcengine-java-sdk-advdefence20230308</module>
262262
<module>volcengine-java-sdk-cv20240606</module>
263+
<module>volcengine-java-sdk-dns</module>
263264
</modules>
264265
</project>

volcengine-java-sdk-bom/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,12 @@
325325
<optional>false</optional>
326326
<version>${project.version}</version>
327327
</dependency>
328+
<dependency>
329+
<groupId>com.volcengine</groupId>
330+
<artifactId>volcengine-java-sdk-dns</artifactId>
331+
<optional>false</optional>
332+
<version>${project.version}</version>
333+
</dependency>
328334
</dependencies>
329335
</dependencyManagement>
330336
</project>

volcengine-java-sdk-dns/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.142</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>volcengine-java-sdk-dns</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/dns/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/dns/examples/**</exclude>
35+
</excludes>
36+
</configuration>
37+
</plugin>
38+
</plugins>
39+
</build>
40+
</project>

0 commit comments

Comments
 (0)