How to add a dependency to Maven
Add the following org.openehealth.ipf.oht.mdht : ipf-oht-mdht-uml-hl7-vocab maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>org.openehealth.ipf.oht.mdht</groupId>
<artifactId>ipf-oht-mdht-uml-hl7-vocab</artifactId>
<version>1.2.0.201212201425</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following org.openehealth.ipf.oht.mdht : ipf-oht-mdht-uml-hl7-vocab gradle dependency to your build.gradle
file:
implementation 'org.openehealth.ipf.oht.mdht:ipf-oht-mdht-uml-hl7-vocab:1.2.0.201212201425'
Gradle Kotlin DSL: Add the following org.openehealth.ipf.oht.mdht : ipf-oht-mdht-uml-hl7-vocab gradle kotlin dependency to your build.gradle.kts
file:
implementation("org.openehealth.ipf.oht.mdht:ipf-oht-mdht-uml-hl7-vocab:1.2.0.201212201425")
How to add a dependency to SBT Scala
SBT Scala: Add the following org.openehealth.ipf.oht.mdht : ipf-oht-mdht-uml-hl7-vocab sbt scala dependency to your build.sbt
file:
libraryDependencies += "org.openehealth.ipf.oht.mdht" % "ipf-oht-mdht-uml-hl7-vocab" % "1.2.0.201212201425"