diff options
author | Michael Dürre <michael.duerre@highstreet-technologies.com> | 2020-08-19 11:02:04 +0200 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-08-19 14:48:32 -0400 |
commit | 4471a01b2c283d1141824ac45608b8224cc2bd68 (patch) | |
tree | b90aebe2a0710415805ca66e392d8602c220d58d | |
parent | 45b5a460fdcec757f4482d69009b87da34728670 (diff) |
fix for J11
add missing dependency in J11
Issue-ID: CCSDK-2669
Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com>
Change-Id: Iea66c3658e3d7e847bdb996567402c66ab2ab9a3
-rwxr-xr-x | sli/common/pom.xml | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/sli/common/pom.xml b/sli/common/pom.xml index 37c89f55..656f2049 100755 --- a/sli/common/pom.xml +++ b/sli/common/pom.xml @@ -61,20 +61,24 @@ <artifactId>logging-slf4j</artifactId> </dependency> <!-- log4j dependencies are needed to test MDC in junit tests --> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-slf4j-impl</artifactId> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-slf4j-impl</artifactId> <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-core</artifactId> + </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> <scope>test</scope> - </dependency> + </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </dependency> <!-- Testing Dependencies --> <dependency> <groupId>junit</groupId> |