fhir-swagger-generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ibm.fhir</groupId> <artifactId>fhir-swagger-generator</artifactId> <version>4.11.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>com.ibm.fhir</groupId> <artifactId>fhir-parent</artifactId> <version>4.11.1</version> <relativePath>../fhir-parent</relativePath> </parent> <artifactId>fhir-swagger-generator</artifactId> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fhir-examples</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fhir-core</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-search</artifactId> <version>${project.version}</version> </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/profiles-resources.xml</exclude> <exclude>src/main/resources/profiles-types.xml</exclude> </excludes> </formatFileSet> </formatFileSets> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>cli</shadedClassifierName> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.ibm.fhir.openapi.generator.FHIROpenApiGenerator</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>