Advertisement
Guest User

maven settings.xml example with server

a guest
Jul 25th, 2014
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.46 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  3.          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
  5. http://maven.apache.org/xsd/settings-1.0.0.xsd">
  6.     <servers>
  7.     <server>
  8.       <id>github</id>
  9.       <username>GITHUB_USERNAME</username>
  10.       <password>GITHUB_PASSWORD</password>
  11.     </server>
  12.       </servers>
  13. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement