Skip to content

Instantly share code, notes, and snippets.

@rocketraman
Created November 28, 2011 06:51
Show Gist options
  • Save rocketraman/1399404 to your computer and use it in GitHub Desktop.
Save rocketraman/1399404 to your computer and use it in GitHub Desktop.
Maven settings file for VIVO repository artifact upload
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<servers>
<server>
<username>username</username>
<password>password</password>
<id>vivosys-release</id>
</server>
<server>
<username>username</username>
<password>password</password>
<id>vivosys-snapshots</id>
</server>
<server>
<username>username</username>
<password>password</password>
<id>vivosys-repo</id>
</server>
</servers>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment