Skip to content

Commit

Permalink
Add direct dependency to Jackson JSON-B and JSON-P in pom.xml.
Browse files Browse the repository at this point in the history
Needed because the transitive dependency from AWS has been used before.
Thus this relates to IQSS#5274. As best practise, code should not rely on
those deps but add a direct dependency.

For the sake of working on IQSS#4260 (Java EE 8) at some point in the future, please
remember to refactor the code using Jackson (and Gson) and remove it
in favor of Java EE 8 native JSON-B and JSON-P support.
  • Loading branch information
poikilotherm committed Nov 15, 2018
1 parent ffb9d2b commit f1dcbd8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,16 @@
<version>2.2.4</version>
<scope>compile</scope>
</dependency>
<!-- Should be refactored and removed once on Java EE 8 -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<!-- Should be refactored and removed once on Java EE 8 -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<!-- required by org.swordapp.server.sword2-server -->
<groupId>com.io7m.xom</groupId>
Expand Down

0 comments on commit f1dcbd8

Please sign in to comment.