Skip to content

Instantly share code, notes, and snippets.

@duckworth
Created January 4, 2012 19:22
Show Gist options
  • Save duckworth/1561578 to your computer and use it in GitHub Desktop.
Save duckworth/1561578 to your computer and use it in GitHub Desktop.
maven settings
<?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">
<profiles>
<!--
This settings.xml file is a sample settings.xml that can be used to
retrieve Odiago (Wibi) artifacts as well as Hadoop, HBase, etc.
artifacts from Cloudera.
To integrate Wibi and CDH into your Maven-based build, save this file
as $HOME/.m2/settings.xml.
Modify the bottom lines to include your Odiago username and password
where it says YOUR_USERNAME_HERE and YOUR_PASSWORD_HERE.
You should then be able to use Odiago build artifacts as part of your
project.
Send any questions to support@wibidata.com
Happy hacking!
- The Wibi team @ Odiago
-->
<profile>
<id>odiago</id>
<repositories>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>odiago-repo</id>
<name>odiago-wibi</name>
<url>https://repo.odiago.com/artifactory/wibi</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>cloudera-releases</id>
<name>cloudera-releases</name>
<url>https://repository.cloudera.com/content/repositories/releases</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>cloudera-public</id>
<name>cloudera-public</name>
<url>https://repository.cloudera.com/content/groups/public</url>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>odiago</activeProfile>
</activeProfiles>
<servers>
<server>
<id>odiago-repo</id>
<username>USER</username>
<password>PASS</password>
</server>
</servers>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment