From 9a337d8e2a62ff5de73df57838a45d8e900f4db4 Mon Sep 17 00:00:00 2001 From: JP Date: Mon, 22 Jan 2024 09:02:24 -0700 Subject: [PATCH] Fix errors on CLI tool (#1319) * Fix CLI runtime errors for slf4j and jaxb * Fix for slf4j and jaxb errors in cli tool --- Src/java/cql-to-elm-cli/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Src/java/cql-to-elm-cli/build.gradle b/Src/java/cql-to-elm-cli/build.gradle index a7c1677a3..a9ae31c7b 100644 --- a/Src/java/cql-to-elm-cli/build.gradle +++ b/Src/java/cql-to-elm-cli/build.gradle @@ -14,6 +14,9 @@ dependencies { implementation project(':model-jaxb') implementation project(':elm-jaxb') implementation 'net.sf.jopt-simple:jopt-simple:4.7' + implementation 'org.slf4j:slf4j-simple:1.7.36' + implementation 'org.glassfish.jaxb:jaxb-runtime:4.0.3' + implementation 'org.eclipse.persistence:org.eclipse.persistence.moxy:4.0.2' testImplementation project(':model-jaxb') testImplementation project(':model-jackson') testImplementation project(':elm-jaxb')