Skip to content

Commit 0fdb840

Browse files
committed
Update README
1 parent 3efb670 commit 0fdb840

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,34 @@ to store and work with POJO's directly.
55

66
An example can be found in the tests [here](common/src/test/java/net/itskev/persistenceframework/common/service/DefaultMongoDbServiceTest.java).
77

8+
## Usage
9+
### Gradle
10+
```java
11+
repositories {
12+
maven(url = "https://jitpack.io")
13+
}
14+
15+
dependencies {
16+
implementation("com.github.itskev:persistence-framework:v1.0.0")
17+
}
18+
```
19+
20+
### Maven
21+
```xml
22+
<repositories>
23+
<repository>
24+
<id>jitpack.io</id>
25+
<url>https://jitpack.io</url>
26+
</repository>
27+
</repositories>
28+
29+
<dependency>
30+
<groupId>com.github.ItsKev</groupId>
31+
<artifactId>persistence-framework</artifactId>
32+
<version>v1.0.0</version>
33+
</dependency>
34+
```
35+
836
## Environment variables
937
| Name | Description |
1038
|---|---|

0 commit comments

Comments
 (0)