Skip to content

Commit

Permalink
Update to clinical-reasoning 3.12 and HAPI 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schuler committed Oct 7, 2024
1 parent 738b494 commit 585e3f5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Java/measureeval/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@
<artifactId>spring-kafka</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>

<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import com.lantanagroup.link.measureeval.exceptions.ValidationException;
import io.jsonwebtoken.security.SignatureException;
import jakarta.servlet.http.HttpServletRequest;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections4.CollectionUtils;
import org.springframework.http.HttpStatus;
import org.springframework.http.HttpStatusCode;
import org.springframework.http.ResponseEntity;
Expand Down
10 changes: 8 additions & 2 deletions Java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<description>Project/folder of Java modules/services for Link</description>

<properties>
<cqf-fhir.version>3.0.0</cqf-fhir.version>
<hapi-fhir.version>7.0.0</hapi-fhir.version>
<cqf-fhir.version>3.12.0</cqf-fhir.version>
<hapi-fhir.version>7.4.0</hapi-fhir.version>
<janino.version>2.6.1</janino.version>
</properties>

Expand Down Expand Up @@ -111,6 +111,12 @@
<version>1.4.1</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
</dependency>

<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-bom</artifactId>
Expand Down

0 comments on commit 585e3f5

Please sign in to comment.