Maven
0 281 2 minutes read
We will contact you soon.
You can install a jar into your local repository that is not managed by maven and is not under any other remote repository.
Use the following command in order to do that
command:
mvn install:install-file -Dfile=./jar_file-1.0.0.jar -DgroupId=your_group -DartifactId=your_artifact -Dversion=1.0.0 -Dpackaging=jar -DgeneratedPom=true
After running the command, you will find inside the local repository a folder called your_group/your_artifact/1.0.0 and inside of it the jar file, the associated pom and all the related meta-file.

We will contact you soon.