Skip to content

Instantly share code, notes, and snippets.

@bchauvin
Last active May 19, 2016 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bchauvin/e0d8a40631046f156cdf to your computer and use it in GitHub Desktop.
Save bchauvin/e0d8a40631046f156cdf to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<!-- sample Maven settings file for a Nuxeo plugin project -->
<settings>
<servers>
<!-- See http://maven.apache.org/guides/mini/guide-encryption.html for password encryption -->
<server>
<id>nuxeo-studio</id>
<username>****</username>
<password>****</password>
</server>
<server>
<id>hotfix-releases</id>
<username>****</username>
<password>****</password>
</server>
<server>
<id>hotfix-snapshots</id>
<username>****</username>
<password>****</password>
</server>
</servers>
<profiles>
<profile>
<id>Nuxeo</id>
<repositories>
<repository>
<id>public</id>
<url>http://maven.nuxeo.org/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>public-snapshot</id>
<url>http://maven.nuxeo.org/nexus/content/groups/public-snapshot</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<updatePolicy>always</updatePolicy>
<enabled>true</enabled>
</snapshots>
</repository>
<!-- Nuxeo Studio Repository For Nuxeo Customers Only -->
<repository>
<id>nuxeo-studio</id>
<url>https://connect.nuxeo.com/nuxeo/site/studio/maven</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
<!-- Hotfix Repositories For Nuxeo Customers Only -->
<repository>
<id>hotfix-releases</id>
<url>https://maven.nuxeo.org/nexus/content/repositories/hotfix-releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>hotfix-snapshots</id>
<url>https://maven.nuxeo.org/nexus/content/repositories/hotfix-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<updatePolicy>always</updatePolicy>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>Nuxeo</activeProfile>
</activeProfiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment