Skip to content

Commit

Permalink
Merge pull request #1016 from vinodaravind01/main
Browse files Browse the repository at this point in the history
feat: upgrade HAPI validation library to.7.6.1  #1015
  • Loading branch information
ratheesh-kr authored Jan 9, 2025
2 parents d45f24a + 13319c8 commit b48ed77
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions hub-prime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,27 +150,27 @@
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-r4</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation-resources-r4</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-caching-caffeine</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
Expand Down Expand Up @@ -321,7 +321,7 @@
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-client</artifactId>
<version>7.4.0</version>
<version>7.6.1</version>
</dependency>
<dependency>
<groupId>io.opentelemetry</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ private void populateConsentProvision(Consent consent, ScreeningProfileData scre
if (screeningResourceData == null || screeningResourceData.getConsentProvisionType() == null) {
return;
}
Consent.provisionComponent provision = new Consent.provisionComponent();
Consent.ProvisionComponent provision = new Consent.ProvisionComponent();
provision.setType(ConsentProvisionType.fromCode(screeningResourceData.getConsentProvisionType()));
consent.setProvision(provision);
}
Expand Down

0 comments on commit b48ed77

Please sign in to comment.