<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">
    <parent>
  		<groupId>MOA</groupId>
    	<artifactId>id</artifactId>
    	<version>2.0.1</version>
  	</parent>
    
    <modelVersion>4.0.0</modelVersion>
    <groupId>MOA.id</groupId>
    <artifactId>moa-id-oa</artifactId>
    <packaging>war</packaging>
    <version>2.0.1</version>
    <name>MOA Sample OA</name>

    <properties>
        <repositoryPath>${basedir}/../../repository</repositoryPath>
    </properties>

		<repositories>
			<repository>
				<id>shibboleth.internet2.edu</id>
				<name>Internet2</name>
				<url>https://build.shibboleth.net/nexus/content/groups/public/</url>
			</repository>
            <repository>
                <id>IAIK Local</id>
                <name>iaik/libs</name>
                <url>http://nexus.iaik.tugraz.at/nexus/content/repositories/iaik/</url>
            </repository>
		</repositories>
    
    <build>
        <finalName>oa</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    
    <dependencies>
      <dependency>
				<groupId>javax.servlet</groupId>
				<artifactId>jstl</artifactId>
				<version>1.2</version>
				<scope>provided</scope>
			</dependency>
			<dependency>
				<groupId>javax.servlet</groupId>
				<artifactId>servlet-api</artifactId>
				<scope>provided</scope>
			</dependency>        
        
			<dependency>
  			<groupId>org.opensaml</groupId>
  			<artifactId>opensaml</artifactId>
  			</dependency>  		
			<dependency>
				<groupId>org.opensaml</groupId>
				<artifactId>xmltooling</artifactId>
				</dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
				<groupId>jstl</groupId>
			  <artifactId>jstl</artifactId>
			  <version>1.2</version>
			</dependency>
						
  		<dependency>
  			<groupId>org.slf4j</groupId>
  			<artifactId>slf4j-api</artifactId>
  			<version>1.7.5</version>
  		</dependency>
  		<dependency>
  			<groupId>org.slf4j</groupId>
  			<artifactId>slf4j-simple</artifactId>
  			<version>1.7.5</version>
  		</dependency>
  		
  		<dependency>
		  	<groupId>iaik</groupId>
				<artifactId>commons-iaik</artifactId>
				<version>0.7.1</version>
			</dependency>
  		
  		<dependency>
				<groupId>MOA</groupId>
				<artifactId>moa-common</artifactId>
				<type>jar</type>
			</dependency>
  		
    </dependencies>

</project>