Difference between revisions of "IT-SDK-Maven"
Jump to navigation
Jump to search
Samerhijazi (talk | contribs) (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=...") |
Samerhijazi (talk | contribs) |
||
| 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.
- 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
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>