server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.google.fhir.gateway</groupId> <artifactId>server</artifactId> <version>0.4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2021-2024 Google LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.google.fhir.gateway</groupId> <artifactId>fhir-gateway</artifactId> <version>0.4.0</version> </parent> <artifactId>server</artifactId> <packaging>jar</packaging> <properties> <root.basedir>${project.parent.basedir}</root.basedir> <!-- This is chosen based on the Spring Boot version used in exec module. Note this module should have no Spring Boot dependency. --> <spring.version>6.1.13</spring.version> <!-- We should keep this consistent with Spring's Jakarta dep as well. --> <jakarta-servlet.version>6.0.0</jakarta-servlet.version> <!-- TODO check version compatibility with HAPI and Spring! --> <jakarta-annotation.version>2.1.1</jakarta-annotation.version> </properties> <dependencies> <!-- This dependency includes the HAPI FHIR Server Framework --> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-server</artifactId> <version>${hapifhir_version}</version> </dependency> <!-- This is a dependency of both hapi-fhir-server and java-jwt, so we pin a version that can work with both. --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.17.1</version> </dependency> <!-- At least one "structures" JAR must also be included --> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-structures-r4</artifactId> <version>${hapifhir_version}</version> </dependency> <!-- Used for validation --> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-validation-resources-r4</artifactId> <version>${hapifhir_version}</version> </dependency> <!-- Needed for JEE/Servlet support --> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>${jakarta-servlet.version}</version> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>${jakarta-annotation.version}</version> </dependency> <!-- For Spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <!-- For GCP APIs --> <dependency> <groupId>com.google.http-client</groupId> <artifactId>google-http-client</artifactId> <version>1.45.0</version> </dependency> <dependency> <groupId>com.google.http-client</groupId> <artifactId>google-http-client-gson</artifactId> <version>1.45.0</version> </dependency> <dependency> <groupId>com.google.auth</groupId> <artifactId>google-auth-library-oauth2-http</artifactId> <version>1.27.0</version> </dependency> <!-- For HTTP Client --> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.14</version> </dependency> <!-- JWT and token verification --> <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>4.4.0</version> </dependency> <!-- This is to provide the ca.uhn.fhir.sl.cache.CacheProvider service. --> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-caching-caffeine</artifactId> <version>${hapifhir_version}</version> </dependency> <!-- This is needed for the FhirPath and FHIRPathEngine of HAPI. This is an "optional" dependency for `hapi-fhir-structures-r4`. --> <dependency> <groupId>org.fhir</groupId> <artifactId>ucum</artifactId> <version>1.0.8</version> </dependency> <!-- Gson --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.11.0</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.34</version> </dependency> </dependencies> </project>