<?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>
    <parent>
        <artifactId>addons-parent-pom</artifactId>
        <groupId>org.exoplatform.addons</groupId>
        <version>16-exo-RC01</version>
    </parent>
    <groupId>org.exoplatform.addons.write-in-ldap</groupId>
    <artifactId>write-in-ldap-parent</artifactId>
    <version>1.0.x-SNAPSHOT</version>
    <packaging>pom</packaging>
    <name>Addon Write In AD</name>

    <modules>
        <module>services</module>
        <module>webapps</module>
        <module>packaging</module>
    </modules>
    <scm>
        <connection>scm:git:git://github.com:exo-addons/write-in-ldap.git</connection>
        <developerConnection>scm:git:git@github.com:exo-addons/write-in-ldap.git</developerConnection>
        <tag>HEAD</tag>
        <url>https://github.com/exo-addons/write-in-ldap</url>
    </scm>
    <properties>
        <!-- **************************************** -->
        <!-- Dependencies versions -->
        <!-- **************************************** -->
        <org.exoplatform.social.version>6.4.4-exo</org.exoplatform.social.version>
    </properties>
    <dependencyManagement>
        <dependencies>
            <!-- Import versions from social project -->
            <dependency>
                <groupId>org.exoplatform.social</groupId>
                <artifactId>social</artifactId>
                <version>${org.exoplatform.social.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
    
            <!-- Current project artifacts -->
            <dependency>
                <groupId>${project.groupId}</groupId>
                <artifactId>write-in-ldap-service</artifactId>
                <version>${project.version}</version>
                <scope>provided</scope>
            </dependency>
    
    
            <dependency>
                <groupId>${project.groupId}</groupId>
                <artifactId>write-in-ldap-webapps</artifactId>
                <version>${project.version}</version>
                <scope>provided</scope>
                <type>war</type>
            </dependency>

        </dependencies>
    </dependencyManagement>
</project>
