Skip to content

Commit

Permalink
Closes #56 and Closes #57 and Closes #58 and Closes #59
Browse files Browse the repository at this point in the history
  • Loading branch information
axholo committed Dec 27, 2019
1 parent 7fb3342 commit fd5a450
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
8 changes: 7 additions & 1 deletion gson-spring/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down Expand Up @@ -76,6 +78,10 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down
8 changes: 7 additions & 1 deletion jackson-spring/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down Expand Up @@ -83,6 +85,10 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.holon-platform</groupId>
<artifactId>parent</artifactId>
<version>1.1.4</version>
<version>1.1.5</version>
</parent>

<groupId>com.holon-platform.json</groupId>
Expand Down Expand Up @@ -55,26 +55,26 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<!-- Holon Core -->
<holon.core.version>5.3.0</holon.core.version>
<holon.core.version>5.4.0</holon.core.version>

<!-- Jackson -->
<jackson.version>2.9.9</jackson.version>
<jackson.databind.version>2.9.9.3</jackson.databind.version>
<jackson.version>2.10.1</jackson.version>
<jackson.databind.version>2.10.1</jackson.databind.version>

<!-- Gson -->
<gson.version>2.8.5</gson.version>
<gson.version>2.8.6</gson.version>

<!-- JAX-RS API (optional) -->
<jax-rs.api.version>2.1</jax-rs.api.version>

<!-- Jersey (optional) -->
<jersey.version>2.29</jersey.version>
<jersey.version>2.29.1</jersey.version>

<!-- Resteasy (optional) -->
<resteasy.version>3.8.1.Final</resteasy.version>
<resteasy.version>3.9.3.Final</resteasy.version>

<!-- slf4j (test) -->
<slf4j.version>1.7.26</slf4j.version>
<slf4j.version>1.7.29</slf4j.version>

</properties>

Expand Down

0 comments on commit fd5a450

Please sign in to comment.