Difference between revisions of "IT-SDK-Maven"

From wiki.samerhijazi.net
Jump to navigation Jump to search
(Created page with "* https://maven.apache.org/ * https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html <pre class="code"> mvn install:install-file -Dfile=<path-to-file> -DgroupId=...")
 
Line 1: Line 1:
 +
=Ref.=
 
* https://maven.apache.org/
 
* https://maven.apache.org/
 +
* https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html
 
* https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
 
* https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
 +
=Install Pachage=
 
<pre class="code">
 
<pre class="code">
 
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>
 
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>
 
mvn install:install-file -Dfile=<path-to-file> -DpomFile=<path-to-pomfile>
 
mvn install:install-file -Dfile=<path-to-file> -DpomFile=<path-to-pomfile>
 
</pre>
 
</pre>

Revision as of 12:21, 28 February 2022

Ref.

Install Pachage

mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>
mvn install:install-file -Dfile=<path-to-file> -DpomFile=<path-to-pomfile>