Skip to content

Commit 54e0af1

Browse files
author
Francesco Cannizzaro
committed
update readme
1 parent 86f0981 commit 54e0af1

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

README.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,30 @@
11
# jsoup-annotations
22
Jsoup Annotations POJO
33

4+
[![](https://jitpack.io/v/fcannizzaro/jsoup-annotations.svg)](https://jitpack.io/#fcannizzaro/jsoup-annotations)
5+
46
![](/icon.png)
57

8+
# Gradle Dependency
9+
10+
## Step 1.
11+
Add the JitPack repository to your build file
12+
```gradle
13+
allprojects {
14+
repositories {
15+
...
16+
maven { url 'https://jitpack.io' }
17+
}
18+
}
19+
```
20+
## Step 2.
21+
Add the dependency
22+
```gradle
23+
dependencies {
24+
compile 'com.github.fcannizzaro:jsoup-annotations:1.0.0'
25+
}
26+
```
27+
628
# Usage
729

830
```java
@@ -61,10 +83,10 @@ void iterate(Element element, int index){
6183
```
6284

6385
## @Child
64-
Denote Field as child element (POJO).
86+
Denote **Field** as child element (POJO).
6587

6688
## @Items
67-
Denote Field as List of Elements (POJO).
89+
Denote **Field** as List of Elements (POJO).
6890

6991
# License
7092
```

icon.png

-20.6 KB
Loading

0 commit comments

Comments
 (0)