mvn install:install-file -Dfile=PathOFJar_MyJar-x.x.x.jar -DgroupId=com.mycompany -DartifactId=myJar -Dversion=x.x.x -Dpackaging=jar
After installing, Add the dependency into Pom.xml :
<dependency>
<groupId>com.mycompany</groupId>
<artifactId>myJar</artifactId>
<version>x.x.x</version>
</dependency>
No comments:
Post a Comment
Your Comment and Question will help to make this blog better...