Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsKev committed Aug 22, 2021
1 parent 3efb670 commit 0fdb840
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@ to store and work with POJO's directly.

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

## Usage
### Gradle
```java
repositories {
maven(url = "https://jitpack.io")
}

dependencies {
implementation("com.github.itskev:persistence-framework:v1.0.0")
}
```

### Maven
```xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

<dependency>
<groupId>com.github.ItsKev</groupId>
<artifactId>persistence-framework</artifactId>
<version>v1.0.0</version>
</dependency>
```

## Environment variables
| Name | Description |
|---|---|
Expand Down

0 comments on commit 0fdb840

Please sign in to comment.