Created
November 28, 2011 06:51
-
-
Save rocketraman/1399404 to your computer and use it in GitHub Desktop.
Maven settings file for VIVO repository artifact upload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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