ipf-oht-mdht-uml-cda
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.openehealth.ipf.oht.mdht</groupId> <artifactId>ipf-oht-mdht-uml-cda</artifactId> <version>1.2.0.201212201425</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.openehealth.ipf.oht.mdht</groupId> <artifactId>ipf-oht-mdht-uml-cda</artifactId> <version>1.2.0.201212201425</version> <name>OpenHealthTools(OHT) MDHT CDA</name> <packaging>jar</packaging> <parent> <groupId>org.openehealth.ipf.oht.mdht</groupId> <artifactId>ipf-oht-mdht</artifactId> <version>1.2.0.201212201425</version> </parent> <properties> <pkgArtifactId>org.openhealthtools.mdht.uml.cda</pkgArtifactId> <pkgGroupId>org.openhealthtools.mdht</pkgGroupId> </properties> <dependencies> <dependency> <groupId>org.openehealth.ipf.oht.mdht</groupId> <artifactId>ipf-oht-mdht-uml-hl7-datatypes</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.openehealth.ipf.oht.mdht</groupId> <artifactId>ipf-oht-mdht-uml-hl7-rim</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.openehealth.ipf.oht.mdht</groupId> <artifactId>ipf-oht-mdht-uml-hl7-vocab</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.openehealth.ipf.oht.mdht</groupId> <artifactId>ipf-oht-mdht-emf-runtime</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.birt.runtime</groupId> <artifactId>org.eclipse.emf.common</artifactId> </dependency> <dependency> <groupId>org.eclipse.birt.runtime</groupId> <artifactId>org.eclipse.emf.ecore</artifactId> </dependency> <dependency> <groupId>org.eclipse.birt.runtime</groupId> <artifactId>org.eclipse.emf.ecore.xmi</artifactId> </dependency> <dependency> <groupId>org.openehealth.ipf.eclipse.ocl</groupId> <artifactId>ipf-eclipse-ocl</artifactId> <version>${eclipse-ocl-version}</version> </dependency> <dependency> <groupId>org.openehealth.ipf.eclipse.ocl</groupId> <artifactId>ipf-eclipse-ocl-ecore</artifactId> <version>${eclipse-ocl-ecore-version}</version> </dependency> <dependency> <groupId>lpg.runtime</groupId> <artifactId>java</artifactId> <version>${lpg-runtime-version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${dependency-plugin-version}</version> <executions> <execution> <id>copy-dependencies</id> <phase>verify</phase> <goals> <goal>copy</goal> </goals> <configuration> <outputDirectory>${project.build.directory}</outputDirectory> <artifactItems> <artifactItem> <artifactId>${pkgArtifactId}</artifactId> <groupId>${pkgGroupId}</groupId> <version>${project.version}</version> <destFileName>${project.artifactId}-${project.version}.jar</destFileName> </artifactItem> <artifactItem> <artifactId>${pkgArtifactId}</artifactId> <groupId>${pkgGroupId}</groupId> <version>${project.version}</version> <classifier>sources</classifier> <destFileName>${project.artifactId}-${project.version}-sources.jar</destFileName> </artifactItem> </artifactItems> <overWriteReleases>true</overWriteReleases> </configuration> </execution> <execution> <id>unpack-sources</id> <phase>process-sources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/extracted-sources</outputDirectory> <artifactItems> <artifactItem> <artifactId>${pkgArtifactId}</artifactId> <groupId>${pkgGroupId}</groupId> <version>${project.version}</version> <classifier>sources</classifier> <destFileName>${project.artifactId}-${project.version}-sources.jar</destFileName> </artifactItem> </artifactItems> <overWriteReleases>true</overWriteReleases> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <executions> <execution> <id>install-jar</id> <goals> <goal>install-file</goal> </goals> <phase>install</phase> <configuration> <file>${project.build.directory}/${project.artifactId}-${project.version}.jar</file> <artifactId>${project.artifactId}</artifactId> <groupId>${project.groupId}</groupId> <generatePom>false</generatePom> <pomFile>pom.xml</pomFile> <packaging>jar</packaging> <sources>${project.build.directory}/${project.artifactId}-${project.version}-sources.jar</sources> <version>${project.version}</version> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>