Skip to content

Commit

Permalink
Merge pull request #8 from saasquatch/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
slisaasquatch authored Sep 9, 2020
2 parents 8b97b36 + 64ab538 commit 2245ab1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,14 @@ Maven
<dependency>
<groupId>com.github.saasquatch</groupId>
<artifactId>json-schema-inferrer</artifactId>
<version>0.1.1</version>
<version>0.1.3</version>
</dependency>
```

Gradle

```gradle
compile 'com.github.saasquatch:json-schema-inferrer:0.1.1'
compile 'com.github.saasquatch:json-schema-inferrer:0.1.3'
```

### Transitive Dependencies
Expand Down
17 changes: 9 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.saasquatch</groupId>
<artifactId>json-schema-inferrer</artifactId>
<version>0.1.2</version>
<version>0.1.3</version>
<packaging>jar</packaging>

<name>json-schema-inferrer</name>
Expand All @@ -20,7 +20,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.6.0</junit.version>
<junit.version>5.6.2</junit.version>
</properties>

<repositories>
Expand Down Expand Up @@ -51,12 +51,12 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.3</version>
<version>2.11.2</version>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>1.6</version>
<version>1.7</version>
<optional>true</optional>
<exclusions>
<exclusion>
Expand Down Expand Up @@ -86,13 +86,13 @@
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.0</version>
<version>5.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>28.2-jre</version>
<version>29.0-jre</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -124,9 +124,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<version>3.2.0</version>
<configuration>
<doclint>none</doclint>
<source>8</source>
</configuration>
<executions>
<execution>
Expand All @@ -140,7 +141,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<version>3.0.0-M5</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
Expand Down

0 comments on commit 2245ab1

Please sign in to comment.