Skip to content

Commit 5098db3

Browse files
authored
Update README.md
1 parent 6e3d006 commit 5098db3

1 file changed

Lines changed: 38 additions & 1 deletion

File tree

README.md

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,39 @@
11
# apijson-orm
2-
APIJSON ORM
2+
APIJSON ORM remote dependencies.
3+
4+
### Maven
5+
#### Step 1. Add the JitPack repository to your build file
6+
```xml
7+
<repositories>
8+
<repository>
9+
<id>jitpack.io</id>
10+
<url>https://jitpack.io</url>
11+
</repository>
12+
</repositories>
13+
```
14+
#### Step 2. Add the dependency
15+
```xml
16+
<dependency>
17+
<groupId>com.github.APIJSON</groupId>
18+
<artifactId>apijson-orm</artifactId>
19+
<version>3.9.0</version>
20+
</dependency>
21+
```
22+
23+
### Gradle
24+
#### Step 1. Add the JitPack repository to your build file
25+
Add it in your root build.gradle at the end of repositories:
26+
```gradle
27+
allprojects {
28+
repositories {
29+
...
30+
maven { url 'https://jitpack.io' }
31+
}
32+
}
33+
```
34+
#### Step 2. Add the dependency
35+
```gradle
36+
dependencies {
37+
implementation 'com.github.APIJSON:apijson-orm:3.9.0'
38+
}
39+
```

0 commit comments

Comments
 (0)