I downloaded edireader 4.7.3 from this link. I got a Java program to read EDI file and convert it to XML file from Here.
It is working fine for me. The file gets executed and generates the XML file.
But I want to add the dependency for edireader.jar instead of adding it manually.
I added the following dependency to my pom file
<dependency>
<groupId>com.berryworks</groupId>
<artifactId>edireader</artifactId>
<version>4.7.3</version>
</dependency>
But it is not downloading the JAR.
What should I add? Do I need to add any repository? If so, which one?
I have gone through this question and tried. But it is not working for me.