Skip to content

Commit 8de20b0

Browse files
authored
Add IBM MQ module (#145)
1 parent 17ccc24 commit 8de20b0

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

modules/ibmmq/index.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: IBM MQ
3+
categories:
4+
- message-broker
5+
docs:
6+
- id: java
7+
url: https://github.com/ibm-messaging/mq-jms-spring/
8+
maintainer: official
9+
example: |
10+
```java
11+
import com.ibm.mq.testcontainers.MQContainer;
12+
13+
var mqContainer = new MQContainer(MQContainer.DEFAULT_IMAGE)
14+
.acceptLicense();
15+
16+
```
17+
installation: |
18+
```xml
19+
<dependency>
20+
<groupId>com.ibm.mq</groupId>
21+
<artifactId>mq-java-testcontainer</artifactId>
22+
<version>1.21.2</version>
23+
<scope>test</scope>
24+
</dependency>
25+
```
26+
27+
description: |
28+
IBM MQ provides a universal messaging backbone with robust connectivity for flexible and reliable messaging for applications and the integration of existing IT assets.
29+
---

0 commit comments

Comments
 (0)