This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<profiles> | |
<!-- | |
Brings in the extra Enterprise specific repository classes, | |
if the 'enterprise' profile has been activated, needs to be activated manually. --> | |
<profile> | |
<id>enterprise</id> | |
<dependencies> | |
<dependency> | |
<groupId>${alfresco.groupId}</groupId> | |
<artifactId>alfresco-enterprise-repository</artifactId> | |
<version>${alfresco.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
</dependencies> | |
</profile> | |
<!-- If we are running in embedded Tomcat skip unit tests --> | |
<profile> | |
<id>run</id> | |
<properties> | |
<skipTests>true</skipTests> | |
</properties> | |
</profile> | |
</profiles> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment