DeekshithSN / nexus--maven-samples

Series of tutorial code snippets for use

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nexus--maven-samples

Series of tutorial code snippets for use #Maven publish tutorial steps Publishing artifact to Nexus snapshot and release repo using maven.

  1. Create a snapshot repo using nexus, or use default coming in out of the box.
  2. Create a release repo using nexus, or use default coming out of the box.
  3. Create a group repo having both release, snapshot and other third party repos. or use default coming out of the box.
  4. Download spring initializer project
  5. Go settings.xml under <MAVEN_INSTALL_LOCATION>\apache-maven-3.6.0\conf or C:\Users<USER_NAME>.m2
  6. Create profiles named snapshot and release in settings.xml (can be done in pom.xml as well)
  7. Add server user name and pwd in setting.xml (Encrypted recommended).
  8. Edit pom.xml and add repository and snapshot repository in distribution management tag
  9. Mark id should match in step 7 with server id of settings.xml
  10. Run mvn clean deploy, this will publish to snapshot repo
  11. Change the version from 1.0-Snapshot to 1.0
  12. Run mvn clean deploy -P release, it will deploy it to release repo

About

Series of tutorial code snippets for use


Languages

Language:Java 100.0%