Java EDI Parser Installation

To start using the parser, add our maven repository to your gradle.build file:

repositories {
    mavenCentral()
    maven {
        url = 'https://repo.datainsight.health/repository/maven-releases/'
    }
}

And add the following dependencies:

dependencies {
    implementation "hdi:edi:2.10"
    implementation "com.fasterxml.jackson.core:jackson-annotations:2.16.+"
    implementation "com.fasterxml.jackson.core:jackson-databind:2.16.+"

To get started, follow examples in our GitHub repo.