Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.4 KB

README.md

File metadata and controls

33 lines (23 loc) · 1.4 KB

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. Copy m2settings.xml to use as your local maven settings.xml, located in .m2 under your home directory, or include the material from m2settings.xml in your existing ~/.m2/settings.xml
  5. Navigate to mirth-sample-plugin/
  6. Run mvn install to install dependencies to local cache
  7. Run mvn clean package to verify the build works
  8. 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 simplifycation

Pull requests are always welcome