Skip to content

Instantly share code, notes, and snippets.

@wabson
Created February 25, 2016 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wabson/8378e3507b0df5482cce to your computer and use it in GitHub Desktop.
Save wabson/8378e3507b0df5482cce to your computer and use it in GitHub Desktop.
Maven settings.xml
<settings>
<profiles>
<profile>
<id>alfresco-internal</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<test.soffice.exe>/Applications/LibreOffice.app/Contents/MacOS/soffice</test.soffice.exe>
</properties>
<repositories>
<repository>
<id>alfresco-internal</id>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<name>Alfresco Internal Repository</name>
<url>https://artifacts.alfresco.com/nexus/content/groups/internal/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>alfresco-internal</id>
<name>Alfresco Internal Repository</name>
<url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<!-- Passwords appear below -->
<servers>
<server>
<id>alfresco-internal</id>
<username>wabson</username>
<password>xxx</password>
</server>
</servers>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment