File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff 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
1126public class JsonResumeValidatorExample {
1227 public static void main (String [] args ) throws JsonResumeParseException {
You can’t perform that action at this time.
0 commit comments