-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dependency on com.fasterxml.jackson.com; switch to version used b…
…y OpenMRS Core
- Loading branch information
1 parent
5e0b93f
commit 40c1b7d
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -279,15 +279,20 @@ | |
</dependency> | ||
|
||
<!-- For reading YAML and JSON files --> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
<artifactId>jackson-core</artifactId> | ||
<version>2.9.8</version> | ||
</dependency> | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
mogoodrich
Author
Member
|
||
<dependency> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
<artifactId>jackson-databind</artifactId> | ||
<version>2.10.1</version> | ||
<version>2.9.8</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.dataformat</groupId> | ||
<artifactId>jackson-dataformat-yaml</artifactId> | ||
<version>2.10.1</version> | ||
<version>2.9.8</version> | ||
</dependency> | ||
|
||
<dependency> | ||
|
@mseaton this version is included in OpenMRS Core 2.3, but OpenMRS Core 2.2 includes an earlier version, which assumedly is why the tests failed. (Not sure why the tests against 2.1.x and earlier didn't fail).
Is it a problem to include this dependency although it's also being included by core?
(Tangentially, willl set up testing aginst 2.3)