I am trying to install a jar called icepdf-core.jar in maven/eclipse.
I am running the following command after which the org.icepdf.core folder is created in ~.m2/repository but the jar file is not being installed in the directory.
mvn install:install-file -Dfile=/Users/me/Downloads/ICEpdf-4.1.4-bin/icepdf/icepdf-core.jar -DgroupId=org.icepdf -DartifactId=core -Dversion=4.1.4 -Dpackaging=jar -DgeneratePom=true
After running this command, I manually copied the core-4.1.4.pom.xml and maven-metadata-local.xml into the local_repo folder in my eclipse project.
I also added the dependency in pom.xml as follows:
<dependency>
<groupId>org.icepdf</groupId>
<artifactId>icepdf-core</artifactId>
<version>4.1.4</version>
</dependency>
I am getting errors in eclipse saying "Missing artifact org.icepdf:icepdf-core:jar:4.1.4:compile".
How can I make this work? Please help me. Thanks a lot!