<?xml version="1.0"?>
<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>
	<name>Profile2 API</name>
	<groupId>org.sakaiproject.profile2</groupId>
	<artifactId>profile2-api</artifactId>

	<packaging>jar</packaging>

	<properties>
    	<deploy.target>shared</deploy.target>
  	</properties>
  	
	<parent>
		<groupId>org.sakaiproject.profile2</groupId>
		<artifactId>profile2</artifactId>
	    <version>1.5.1</version>
	</parent>

  	<dependencies>

    	<!-- EXTERNAL DEPENDENCIES -->
    	<dependency>
      		<groupId>commons-lang</groupId>
      		<artifactId>commons-lang</artifactId>
      		<scope>provided</scope>
   		</dependency>
   		
   		<dependency>
      		<groupId>commons-codec</groupId>
      		<artifactId>commons-codec</artifactId>
   		</dependency>
   		<dependency>
			<groupId>org.projectlombok</groupId>
			<artifactId>lombok</artifactId>
		</dependency>

		<!--  GENERIC SAKAI DEPENDENCIES -->
		<dependency>
			<groupId>org.sakaiproject.common</groupId>
			<artifactId>sakai-common-edu-person-api</artifactId>
			<scope>provided</scope>
    	</dependency>
    	
	    <dependency>
    		<groupId>org.sakaiproject.entitybroker</groupId>
    		<artifactId>entitybroker-api</artifactId>
    		<scope>provided</scope>
		</dependency>
		
		<!-- Sakai 2.5.x specific dependencies -->
		<!-- 
		<dependency>
			<groupId>org.sakaiproject</groupId>
			<artifactId>sakai-user-api</artifactId>
			<scope>provided</scope>
		</dependency>
		 -->
		 
		 <!-- Sakai 2.6+ specific dependencies -->
        <dependency>
            <groupId>org.sakaiproject.kernel</groupId>
            <artifactId>sakai-kernel-api</artifactId>
        </dependency>
	    
	</dependencies>
	
	<!-- include email templates -->
	<build>
		<resources>
            <resource>
                <directory>${basedir}/src/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
	</build>
	 
</project>
