<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.alfresco.consulting.module</groupId>
    <artifactId>sql-repo</artifactId>
    <version>1.0.0</version>
    <name>SQL Data Source access for the backend</name>
    <packaging>amp</packaging>
    <description>This module implements SQL Data Source access methods.</description>

    <parent>
        <groupId>org.alfresco.maven</groupId>
        <artifactId>alfresco-sdk-parent</artifactId>
        <version>2.1.1</version>
    </parent>

    <properties>
    	<!-- This AMP is for the repo (alfresco.war), not share (share.war) -->
        <alfresco.client.war>${alfresco.repo.artifactId}</alfresco.client.war>
        <alfresco.client.contextPath>/alfresco</alfresco.client.contextPath>
        
        <!-- Run on 8080, althoug this could change; though change the symbolic-link-share configuration accordingly -->
        <maven.tomcat.port>8080</maven.tomcat.port>
        
		<!--<alfresco.version>5.0.c</alfresco.version>-->
        
        <!-- Defines the log level used in log4j.properties -->
        <app.log.root.level>WARN</app.log.root.level>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>${alfresco.groupId}</groupId>
                <artifactId>alfresco-platform-distribution</artifactId>
                <version>${alfresco.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    
    <dependencies>
        <dependency>
            <groupId>${alfresco.groupId}</groupId>
            <artifactId>alfresco-repository</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>
	
	<distributionManagement>
		<repository>
			<id>alfresco-consulting-public</id>
			<name>Alfresco Consulting Releases</name>
			<url>https://artifacts.alfresco.com/nexus/content/repositories/alfresco-consulting-public</url>
			<layout>default</layout>
		</repository>
	</distributionManagement>
    
</project>
