alfresco enterprise repository configuration in pom.xml

cancel
Showing results for 
Search instead for 
Did you mean: 
kartech11
Active Member II

alfresco enterprise repository configuration in pom.xml

Hi, 

I am using enterprise version of alfresco. Below is my repository and plugin repository. Is this correct repo setup for enterprise alfresco? Can I refer the public-snapshots repo for enterprise alfresco?

The documentation only states that the alfresco-public-repository  to the alfresco-private-repository one.

<repositories>
    <repository>
        <id>alfresco-public-snapshots</id>
        <url>https://artifacts.alfresco.com/nexus/content/groups/public-snapshots</url>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>daily</updatePolicy>
        </snapshots>
    </repository>
    <!-- Alfresco Enterprise Edition Artifacts, put username/pwd for server in settings.xml -->
    <repository>
        <id>alfresco-private-repository</id>
        <url>https://artifacts.alfresco.com/nexus/content/groups/private</url>
    </repository>
</repositories>
<pluginRepositories>
    <pluginRepository>
        <id>alfresco-plugin-public</id>
        <url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
    </pluginRepository>
    <pluginRepository>
        <id>alfresco-plugin-public-snapshots</id>
        <url>https://artifacts.alfresco.com/nexus/content/groups/public-snapshots</url>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>daily</updatePolicy>
        </snapshots>
    </pluginRepository>
</pluginRepositories>

Thanks

1 Reply
afaust
Master

Re: alfresco enterprise repository configuration in pom.xml

There are typically no SNAPSHOT artifacts for Enterprise, so there is also no alfresco-private-snapshots. You can refer to the public-snapshots group in case you want to switch to any of the public nightly snapshot build libraries of the open source Community variant.