<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>eu.espas</groupId>
      <artifactId>uoa-espas-carbon</artifactId>
      <version>3.0-SNAPSHOT</version>
  </parent>

  <artifactId>uoa-espas-pip</artifactId>
  <name>uoa-espas-pip</name>
  <packaging>jar</packaging>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>(1.2, 1.5]</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>postgresql</groupId>     
      <artifactId>postgresql</artifactId>      
      <version>9.1-901-1.jdbc4</version>      
      <scope>test</scope>    
    </dependency>
    <dependency>        
        <groupId>org.wso2.carbon</groupId>        
        <artifactId>org.wso2.carbon.identity.entitlement</artifactId>        
        <version>4.2.0</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.xmlbeans</groupId>
      <artifactId>xmlbeans</artifactId>
      <version>2.5.0</version>
    </dependency>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.1.1</version>
    </dependency>
  </dependencies>
  
  <build>
      <plugins>
          <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>xmlbeans-maven-plugin</artifactId>
              <version>2.3.3</version>
              <executions>
                  <execution>
                      <goals>
                          <goal>xmlbeans</goal>
                      </goals>
                  </execution>
              </executions>
              <inherited>true</inherited>
              <configuration>
                  <!--memoryInitialSize>256m</memoryInitialSize-->
                  <download>true</download>
                  <verbose>true</verbose>
                  <javaSource>1.6</javaSource>
                  <debug>true</debug>
                  <classGenerationDirectory>target/classes</classGenerationDirectory>
                  <schemaDirectory>src/main/resources/conf</schemaDirectory>
              </configuration>
          </plugin>

      </plugins>
  </build>
  
  <repositories>
      <repository>
          <id>wso2-maven2-repository</id>
          <url>http://dist.wso2.org/maven2</url>
      </repository>
  </repositories>
</project>
