Skip to content

Commit 809501e

Browse files
ci_volc_sdk_genvolc-sdk-team
authored andcommitted
feat: auto generate for httpdns-Java-2023-09-01-online-871-2024_12_23_18_46_27
1 parent ad42ea2 commit 809501e

32 files changed

+5564
-0
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,5 +263,6 @@
263263
<module>volcengine-java-sdk-dns</module>
264264
<module>volcengine-java-sdk-mcdn</module>
265265
<module>volcengine-java-sdk-cloudtrail</module>
266+
<module>volcengine-java-sdk-httpdns</module>
266267
</modules>
267268
</project>

volcengine-java-sdk-bom/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,12 @@
343343
<optional>false</optional>
344344
<version>${project.version}</version>
345345
</dependency>
346+
<dependency>
347+
<groupId>com.volcengine</groupId>
348+
<artifactId>volcengine-java-sdk-httpdns</artifactId>
349+
<optional>false</optional>
350+
<version>${project.version}</version>
351+
</dependency>
346352
</dependencies>
347353
</dependencyManagement>
348354
</project>
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.144</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>volcengine-java-sdk-httpdns</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/httpdns/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/httpdns/examples/**</exclude>
35+
</excludes>
36+
</configuration>
37+
</plugin>
38+
</plugins>
39+
</build>
40+
</project>

0 commit comments

Comments
 (0)