Package org.fhirfrog.frog.maven
package org.fhirfrog.frog.maven
Maven plugin integration for FHIR Frog.
This package provides a Maven Mojo that executes FHIR TestScripts and TestPlans during the Maven build lifecycle, with optional TestReport generation and storage.
Key Classes
FhirTestMojo- The Maven goalfhir-frog:test; binds to theintegration-testphase by default
Maven POM Usage
<plugin>
<groupId>org.fhirfrog</groupId>
<artifactId>fhir-frog-maven-plugin</artifactId>
<executions>
<execution>
<goals><goal>test</goal></goals>
<configuration>
<testScript>src/test/resources/fhir/patient-crud.json</testScript>
<serverUrl>http://localhost:8080/fhir</serverUrl>
<reportDir>${project.build.directory}/fhir-reports</reportDir>
</configuration>
</execution>
</executions>
</plugin>
- See Also:
-
Classes