Skip to content

Commit

Permalink
added maven dependency example
Browse files Browse the repository at this point in the history
  • Loading branch information
meehaws committed Sep 27, 2024
1 parent c925cb8 commit f0e98fc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,25 @@ To run tests, simply run `mvn test`
[GitHub Acitons badge]: https://github.com/gravity9-tech/mongocdc/actions/workflows/maven.yml/badge.svg?branch=main

[GitHub Acitons link]: https://github.com/gravity9-tech/mongocdc/actions/workflows/maven.yml

## Using it in your project

With Gradle:

```groovy
dependencies {
compile(group: "com.gravity9", name: 'mongo-change-stream-enhancer', version: "yourVersionHere");
}
```

With Maven:

```xml
<dependency>
<groupId>com.gravity9</groupId>
<artifactId>mongo-change-stream-enhancer</artifactId>
<version>1.0.0-beta</version>
</dependency>
```

[Maven repo link](https://mvnrepository.com/artifact/com.gravity9/mongo-change-stream-enhancer)

0 comments on commit f0e98fc

Please sign in to comment.