Maven Deploy External JAR: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
(Created page with "==References== * [https://maven.apache.org/guides/mini/guide-3rd-party-jars-remote.html Deploying 3rd party JARs to remote repository]")
 
No edit summary
Line 1: Line 1:
<source lang="bash>
mvn deploy:deploy-file -DgroupId=<group-id> \
  -DartifactId=<artifact-id> \
  -Dversion=<version> \
  -Dpackaging=<type-of-packaging> \
  -Dfile=<path-to-file> \
  -DrepositoryId=<id-to-map-on-server-section-of-settings.xml> \
  -Durl=<url-of-the-repository-to-deploy>
</source>
==References==
==References==
* [https://maven.apache.org/guides/mini/guide-3rd-party-jars-remote.html Deploying 3rd party JARs to remote repository]
* [https://maven.apache.org/guides/mini/guide-3rd-party-jars-remote.html Deploying 3rd party JARs to remote repository]

Revision as of 23:21, 8 June 2019

mvn deploy:deploy-file -DgroupId=<group-id> \
  -DartifactId=<artifact-id> \
  -Dversion=<version> \
  -Dpackaging=<type-of-packaging> \
  -Dfile=<path-to-file> \
  -DrepositoryId=<id-to-map-on-server-section-of-settings.xml> \
  -Durl=<url-of-the-repository-to-deploy>

References