<?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>
        <groupId>org.sakaiproject</groupId>
        <artifactId>master</artifactId>
        <version>21.2</version>
        <relativePath>../master/pom.xml</relativePath>
    </parent>
	
	<name>External Calendaring Service</name>
	<groupId>org.sakaiproject.calendaring</groupId>
	<artifactId>external-calendaring-service</artifactId>
	<packaging>pom</packaging>

	<developers>
		<developer>
			<name>Steve Swinsburg</name>
			<email>steve.swinsburg@gmail.com</email>
			<timezone>10</timezone>
		</developer>
	</developers>
    
    <contributors>
        <contributor>
            <name>Anthony Whyte</name>
            <email>arwhyte@umich.edu</email>
        </contributor>
    </contributors>
    
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    
    <modules>
        <module>api</module>
        <module>impl</module>
    </modules>
    
	
	<dependencyManagement>
		<dependencies>	
			<!-- project dependencies -->
            <dependency>
                <groupId>org.sakaiproject.calendar</groupId>
                <artifactId>sakai-calendar-api</artifactId>
                <version>${sakai.version}</version>
                <scope>provided</scope>
            </dependency>
			<dependency>
      			<groupId>org.sakaiproject.calendaring</groupId>
      			<artifactId>external-calendaring-service-api</artifactId>
      			<version>${project.version}</version>
      			<scope>provided</scope>
    		</dependency>
    		<dependency>
      			<groupId>org.sakaiproject.calendaring</groupId>
      			<artifactId>external-calendaring-service-impl</artifactId>
      			<version>${project.version}</version>
      			<scope>runtime</scope>
    		</dependency>
			
		</dependencies>
	</dependencyManagement>	
	
</project>
