Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

This project is still at the experimental stage though is being actively used within the KenyaEMR distribution

This Maven plugin provides support for OpenMRS based distributions. Such distributions typically bundle a lot of content (metadata, concepts, forms, reports) with their code and this plugin seeks to help developers more easily manage that content.

...

Code Block
languagexml
titleExample concepts.xml
<refs><refs type="Concept">
  <ref key="YES" uuid="1065AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" />
  <ref key="NO" uuid="1066AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" />
</refs>

...

Code Block
languagexml
titlePlugin dependency in main pom.xml
<pluginManagement>
  <plugins>
    <plugin>
      <groupId>org.openmrs.maven.plugins</groupId>
      <artifactId>distrotools-maven-plugin</artifactId>
      <version>0.3<5</version>
    </plugin>
  </plugins>
</pluginManagement>

...