leonelhl

JFROG-settings.xml

Jul 25th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.73 KB | None | 0 0
  1. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  2.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  4.   <!-- the path to the local repository - defaults to ~/.m2/repository
  5.  -->
  6.   <!-- <localRepository>/path/to/local/repo</localRepository>
  7.  -->
  8.    <servers>
  9.     <server>
  10.       <id>nexus</id>
  11.       <username>admin</username>
  12.       <password>admin123</password>
  13.     </server>
  14.   </servers>
  15.  
  16.   <mirrors>
  17.     <mirror>
  18.       <id>central</id>
  19.       <name>central</name>
  20.       <url>http://localhost:8081/artifactory/maven-public/</url>
  21.       <mirrorOf>*</mirrorOf>
  22.     </mirror>
  23.   </mirrors>
  24.  
  25. </settings>
Advertisement
Add Comment
Please, Sign In to add comment