Wednesday, August 19, 2015

Command to publish jar into your local Maven Repository


D:\Kiran\Kiran\Projects\NCB\ETL>mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.3 -Dpackaging=jar -Dfile=ojdbc6.jar
 -DgeneratePom=true

Points to be noted :

  • Maven client to be installed. You can check if maven is installed by running the below command ,
    mvn -version which would result in the below result,



  • Executing above command  results in below results,


Once you see the BUILD SUCCESS in the above command result,

You can add dependency in your POM.xml as below,

                <dependency>
<groupId>com.oracle</groupId> <!-- Group ID from the command-->
<artifactId>ojdbc6</artifactId>  <!-- Artifact ID from the command-->
<version>11.2.0.3</version>       <!-- Version from the command-->
</dependency>

References :


1 comment:

  1. With proxy
    mvn install:install-file -DproxySet=true -DproxyHost=proxy.host.com -DproxyPort=1234 -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.3 -Dpackaging=jar -Dfile=ojdbc6.jar -DgeneratePom=true

    ReplyDelete