fhir-search
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.linuxforhealth.fhir</groupId> <artifactId>fhir-search</artifactId> <version>5.1.1</version> </dependency>
<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>org.linuxforhealth.fhir</groupId> <artifactId>fhir-parent</artifactId> <version>5.1.1</version> <relativePath>../fhir-parent</relativePath> </parent> <artifactId>fhir-search</artifactId> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fhir-config</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fhir-model</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fhir-path</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fhir-term</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fhir-cache</artifactId> <version>${project.version}</version> </dependency> <dependency> <!-- Not strictly required but, without it, you won't have any search parameters or compartment definitions --> <groupId>${project.groupId}</groupId> <artifactId>fhir-core-r4b</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fhir-validation</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fhir-validation</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fhir-model</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fhir-examples</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>xml-maven-plugin</artifactId> <configuration> <formatFileSets> <formatFileSet> <directory>${project.basedir}</directory> <excludes> <exclude>src/main/resources/search-parameters.xml</exclude> </excludes> </formatFileSet> </formatFileSets> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <org.linuxforhealth.fhir.search.test.ExamplesDriverTest.index>${fhir-search.index}</org.linuxforhealth.fhir.search.test.ExamplesDriverTest.index> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </project>