mirth-sample-plugin icon indicating copy to clipboard operation
mirth-sample-plugin copied to clipboard

A sample NextGen Connect plugin.

A sample NextGen connect Plugin project

A sample NextGen Connect plugin.

This repository is used in this guide on writing Mirth plugins.


Installation

  1. Install Java
  2. Install Maven
  3. Run git clone https://github.com/kpalang/mirth-sample-plugin
  4. Navigate to mirth-sample-plugin/
  5. Run mvn install to install dependencies to local cache
  6. Run mvn clean package to verify the build works
  7. Try to install the sample plugin by getting the .zip archive from mirth-sample-plugin/distribution/target

Usage

Use this repository as a base to develop your own plugins.

This repository showcases use of mirth-plugin-maven-plugin to generate plugin.xml file!

  • Any external libraries that you might want to use in the plugin at runtime, go into libs/runtime/{type}
  • Any external libraries that you might want to use at compiletime, go into libs/compiletime/{type}

TODO

  • More simplification

Pull requests are always welcome