Skip to content

Commit dca0542

Browse files
committed
update reademe
1 parent f782eeb commit dca0542

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,22 @@ Java library to validate JSON resumes to ensure that they are according to the [
66

77
> For more information on JSON resumes, please see the [official JSON Resume initiative](https://jsonresume.org)
88
9-
## Usage
9+
## Using
10+
For Maven-based projects, add the following to your POM file (the dependency are available at Maven Central):
11+
```xml
12+
<dependency>
13+
<groupId>io.github.eaxdev</groupId>
14+
<artifactId>jsonresume-validator</artifactId>
15+
<version>{{current_latest_version}}</version>
16+
</dependency>
17+
```
18+
If you using Gradle, add this in your `build.gradle`:
19+
```
20+
compile group: 'io.github.eaxdev', name: 'jsonresume-validator', version: '{{current_latest_version}}'
21+
```
22+
23+
And then use it in your code:
24+
1025
```java
1126
public class JsonResumeValidatorExample {
1227
public static void main(String[] args) throws JsonResumeParseException {

0 commit comments

Comments
 (0)