<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>
        <groupId>com.covisint.platform.user</groupId>
        <artifactId>user-parent</artifactId>
        <version>1.0.0.RELEASE</version>
    </parent>

    <groupId>com.covisint.platform.user.client</groupId>
    <artifactId>user-client</artifactId>

    <dependencies>
        <!-- Compile -->
        <dependency>
            <groupId>com.covisint.core.http.service</groupId>
            <artifactId>http-service-client</artifactId>
            <version>${http.framework.version}</version>
        </dependency>

        <dependency>
            <groupId>com.covisint.platform.user.core</groupId>
            <artifactId>user-core</artifactId>
            <version>${project.version}</version>
        </dependency>

        <dependency>
            <!-- Used by SDK distros. -->
            <groupId>com.covisint.platform.oauth.client</groupId>
            <artifactId>oauth-client</artifactId>
            <version>1.0.0.RELEASE</version>
        </dependency>

        <!-- Provided -->

        <!-- Runtime -->

        <!-- Test -->
        <dependency>
            <groupId>com.github.tomakehurst</groupId>
            <artifactId>wiremock</artifactId>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <!-- Create a distribution archive. -->
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <descriptors>
                        <descriptor>src/main/assembly/assembly.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <id>make-distro</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    
</project>
