-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update API documentation #12
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #12 +/- ##
=========================================
Coverage 56.47% 56.47%
Complexity 25 25
=========================================
Files 11 11
Lines 301 301
Branches 34 34
=========================================
Hits 170 170
Misses 125 125
Partials 6 6
☔ View full report in Codecov by Sentry. |
- Destination (Queue, Topic) | ||
- Message | ||
|
||
## Samples |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
btw, are we going to add samples later?
@@ -1,2 +1,93 @@ | |||
# module-ballerinax-ibm.ibmmq | |||
Ballerina IBM MQ client connector module. | |||
# Ballerina `ibm.ibmmq` Library |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should it be package
? Need to check and fix all occurrences.
|
||
The `ballerinax/ibm.ibmmq` library provides an API to connect to an IBM MQ server using Ballerina. | ||
|
||
This library is created with minimal deviation from the IBM MQ java client API to make it easy for the developers who are used to working with the IBM MQ java client. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be Java
.
|
||
This library is created with minimal deviation from the IBM MQ java client API to make it easy for the developers who are used to working with the IBM MQ java client. | ||
|
||
Currently, the following IBM MQ API Classes are supported through this package. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be classes
.
|
||
Currently, the following IBM MQ API Classes are supported through this package. | ||
|
||
- QueueManager |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add backticks for classnames.
|
||
## Issues and projects | ||
|
||
Issues and Projects tabs are disabled for this repository as this is part of the Ballerina Standard Library. To report bugs, request new features, start new discussions, view project boards, etc., go to the [Ballerina Standard Library parent repository](https://github.com/ballerina-platform/ballerina-standard-library). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tab names should be in bold.
``` | ||
./gradlew clean build -Pdebug=<port> | ||
``` | ||
5. To debug the library with Ballerina language: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be the Ballerina language
.
``` | ||
./gradlew clean build -PbalJavaDebug=<port> | ||
``` | ||
6. Publish ZIP artifact to the local `.m2` repository: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add the
.
``` | ||
./gradlew clean build publishToMavenLocal | ||
``` | ||
7. Publish the generated artifacts to the local Ballerina central repository: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Central
|
||
## Useful links | ||
|
||
* For more information go to the [`ibm.ibmmq` library](https://lib.ballerina.io/ballerinax/ibm.ibmmq/latest). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need a comma.
@@ -0,0 +1,14 @@ | |||
## Overview | |||
|
|||
The `ballerinax/ibm.ibmmq` module provides an API to connect to an IBM MQ server using Ballerina. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should it be package?
Purpose
Part of: #5084