<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    
    <parent>
        <groupId>com.rackspace.papi.components</groupId>
        <artifactId>components-support</artifactId>
        <version>0.9.1</version>
    </parent>

    <groupId>com.rackspace.papi.components</groupId>
    <artifactId>client-auth</artifactId>

    <name>Power API Components - Client Authentication</name>
    <description>TODO</description>

    <packaging>jar</packaging>
    
    <dependencies>
        <dependency>
            <groupId>com.rackspace.cloud.services.clients</groupId>
            <artifactId>rackspace-auth-v1.1</artifactId>
        </dependency>
        
        <dependency>
            <groupId>net.sf.ehcache</groupId>
            <artifactId>ehcache-core</artifactId>
        </dependency>
        
        <dependency>
            <groupId>com.rackspace.papi.core</groupId>
            <artifactId>core-lib</artifactId>
        </dependency>

        <dependency>
            <groupId>com.rackspace.papi.commons</groupId>
            <artifactId>configuration</artifactId>
        </dependency>

        <dependency>
            <groupId>com.rackspace.papi.commons</groupId>
            <artifactId>utilities</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>com.sun.tools.xjc.maven2</groupId>
                <artifactId>maven-jaxb-plugin</artifactId>
                
                <configuration>                    
                    <includeSchemas>
                        <includeSchema>**/*.xsd</includeSchema>
                    </includeSchemas>
                    
                    <includeBindings>
                        <includeBinding>**/*.xjb</includeBinding>
                    </includeBindings>
                    
                    <strict>true</strict>
                    <verbose>false</verbose>
                </configuration>
            </plugin>                        
        </plugins>
    </build>
</project>
