We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3efb670 commit 0fdb840Copy full SHA for 0fdb840
1 file changed
README.md
@@ -5,6 +5,34 @@ to store and work with POJO's directly.
5
6
An example can be found in the tests [here](common/src/test/java/net/itskev/persistenceframework/common/service/DefaultMongoDbServiceTest.java).
7
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
36
## Environment variables
37
| Name | Description |
38
|---|---|
0 commit comments