Skip to content

Commit d924915

Browse files
author
BitsAdmin
committed
Merge branch 'rabbitmq-Java-2022-01-01-online-711-2024_10_28_11_18_16' into 'integration_2024-10-31_519233252354'
feat: [development task] RabbitMQ-711-Java (828535) See merge request iaasng/volcengine-java-sdk!282
2 parents bb031fd + 9179675 commit d924915

File tree

58 files changed

+10665
-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.

58 files changed

+10665
-0
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,5 +249,6 @@
249249
<module>volcengine-java-sdk-kms</module>
250250
<module>volcengine-java-sdk-nta</module>
251251
<module>volcengine-java-sdk-rocketmq</module>
252+
<module>volcengine-java-sdk-rabbitmq</module>
252253
</modules>
253254
</project>

volcengine-java-sdk-bom/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,12 @@
259259
<optional>false</optional>
260260
<version>${project.version}</version>
261261
</dependency>
262+
<dependency>
263+
<groupId>com.volcengine</groupId>
264+
<artifactId>volcengine-java-sdk-rabbitmq</artifactId>
265+
<optional>false</optional>
266+
<version>${project.version}</version>
267+
</dependency>
262268
</dependencies>
263269
</dependencyManagement>
264270
</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.134</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>volcengine-java-sdk-rabbitmq</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/rabbitmq/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/rabbitmq/examples/**</exclude>
35+
</excludes>
36+
</configuration>
37+
</plugin>
38+
</plugins>
39+
</build>
40+
</project>

0 commit comments

Comments
 (0)