<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">
  
    <parent>
        <groupId>MOA</groupId>
        <artifactId>id</artifactId>
        <version>3.x</version>
    </parent>
  
  <modelVersion>4.0.0</modelVersion>
  <groupId>MOA.id</groupId>
  <artifactId>moa-id-webgui</artifactId>
  <version>1.0</version>
  <name>MOA-ID WebGUI Module</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>
	</repositories>
  
  <build>
    <sourceDirectory>src/main/java</sourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
  
  <dependencies>
  	<dependency>
    	<groupId>at.gv.egiz.components</groupId>
    	<artifactId>egiz-configuration-meta-api</artifactId>
    	<version>0.3</version>
    </dependency>
    <dependency>
    	<groupId>at.gv.egiz.components</groupId>
    	<artifactId>egiz-spring-api</artifactId>
    	<version>0.1</version>
    </dependency>
    
    <dependency>
    	<groupId>MOA.id.server</groupId>
      <artifactId>moa-id-commons</artifactId>
      <exclusions>
      	<exclusion>
      		<artifactId>hyperjaxb3-ejb-runtime</artifactId>
      		<groupId>org.jvnet.hyperjaxb3</groupId>
      	</exclusion>
      	<exclusion>
      		<artifactId>hibernate-c3p0</artifactId>
      		<groupId>org.hibernate</groupId>
      	</exclusion>
      </exclusions>
    </dependency>
    
    <dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
		</dependency>
    
        <dependency>
            <groupId>org.opensaml</groupId>
            <artifactId>opensaml</artifactId>
            <exclusions>
							<exclusion>
								<groupId>org.slf4j</groupId>
								<artifactId>log4j-over-slf4j</artifactId>
							</exclusion>
						</exclusions>
        </dependency>
        <dependency>
            <groupId>org.opensaml</groupId>
            <artifactId>xmltooling</artifactId>
            <exclusions>
							<exclusion>
								<groupId>org.slf4j</groupId>
								<artifactId>log4j-over-slf4j</artifactId>
							</exclusion>
						</exclusions>
        </dependency>
    
  </dependencies>
  
  
</project>