mirror of
https://github.com/Alfresco/alfresco-transform-core.git
synced 2025-05-26 17:24:47 +00:00
80 lines
2.8 KiB
XML
80 lines
2.8 KiB
XML
<settings>
|
|
<profiles>
|
|
<profile>
|
|
<id>alfresco-internal</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<repositories>
|
|
<repository>
|
|
<id>alfresco-internal</id>
|
|
<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/internal</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<properties>
|
|
<!-- WhiteSource token -->
|
|
<org.whitesource.orgToken>${env.WHITESOURCE_TOKEN}</org.whitesource.orgToken>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<servers>
|
|
<!-- Credential for private Nexus repository groups -->
|
|
<server>
|
|
<id>alfresco-internal</id>
|
|
<username>bamboo</username>
|
|
<password>${env.NEXUS_PASSWORD}</password>
|
|
</server>
|
|
<!-- Credential for private Nexus repositories -->
|
|
<server>
|
|
<id>alfresco-internal-snapshots</id>
|
|
<username>bamboo</username>
|
|
<password>${env.NEXUS_PASSWORD}</password>
|
|
</server>
|
|
<server>
|
|
<id>alfresco-internal-releases</id>
|
|
<username>bamboo</username>
|
|
<password>${env.NEXUS_PASSWORD}</password>
|
|
</server>
|
|
<server>
|
|
<id>alfresco-enterprise-snapshots</id>
|
|
<username>bamboo</username>
|
|
<password>${env.NEXUS_PASSWORD}</password>
|
|
</server>
|
|
<server>
|
|
<id>alfresco-enterprise-releases</id>
|
|
<username>bamboo</username>
|
|
<password>${env.NEXUS_PASSWORD}</password>
|
|
</server>
|
|
<server>
|
|
<id>alfresco-public-snapshots</id>
|
|
<username>bamboo</username>
|
|
<password>${env.NEXUS_PASSWORD}</password>
|
|
</server>
|
|
<server>
|
|
<id>alfresco-public</id>
|
|
<username>bamboo</username>
|
|
<password>${env.NEXUS_PASSWORD}</password>
|
|
</server>
|
|
<!-- private docker registry-->
|
|
<server>
|
|
<id>quay.io</id>
|
|
<username>alfresco+bamboo</username>
|
|
<password>${env.QUAY_PASSWORD}</password>
|
|
</server>
|
|
<server>
|
|
<id>docker.io</id>
|
|
<username>${env.DOCKERHUB_USERNAME}</username>
|
|
<password>${env.DOCKERHUB_PASSWORD}</password>
|
|
</server>
|
|
</servers>
|
|
</settings>
|