<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>MOA.id.server.modules</groupId>
    <artifactId>moa-id-modules</artifactId>
    <version>${moa-id-version}</version>
  </parent>
  <artifactId>moa-id-module-eIDAS</artifactId>
  <name>MOA-ID eIDAS Module</name>
  <description>Inbound / outbound implemention of eIDAS protocol for MOA-ID</description>
  
  <properties>
		<repositoryPath>${basedir}/../../../../repository</repositoryPath>
		
		<eidas-commons.version>eidas.1.0</eidas-commons.version>
		<eidas-saml-engine.version>eidas.1.0</eidas-saml-engine.version>
		
	</properties>
  
  <dependencies>
  	<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-test</artifactId>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
  
		<!-- eidas Commons -->
		<dependency>
    		<groupId>eu.eidas</groupId>
    		<artifactId>eidas-commons</artifactId>
    		<version>${eidas-commons.version}</version>
			<!--scope>provided</scope-->
            <exclusions>
                <exclusion>
                    <groupId>log4j</groupId>
                    <artifactId>log4j</artifactId>
                </exclusion>
                <exclusion>
                	<artifactId>log4j-over-slf4j</artifactId>
                	<groupId>org.slf4j</groupId>
                </exclusion>
            </exclusions>
		</dependency>

		<!-- eidas SAML Engine -->
		<dependency> 
    		<groupId>eu.eidas</groupId>
    		<artifactId>saml-engine</artifactId>
    		<version>${eidas-saml-engine.version}</version>
    		<scope>compile</scope>
			<exclusions>
				<exclusion>
					<groupId>org.slf4j</groupId>
					<artifactId>slf4j-simple</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.slf4j</groupId>
					<artifactId>jcl-over-slf4j</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.slf4j</groupId>
					<artifactId>slf4j-api</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.slf4j</groupId>
					<artifactId>jul-to-slf4j</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.slf4j</groupId>
					<artifactId>log4j-over-slf4j</artifactId>
				</exclusion>
                <exclusion>
                    <groupId>xalan</groupId>
                    <artifactId>serializer</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>xalan</groupId>
                    <artifactId>xalan</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>xerces</groupId>
                    <artifactId>xercesImpl</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>xml-resolver</groupId>
                    <artifactId>xml-resolver</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>xml-apis</groupId>
                    <artifactId>xml-apis</artifactId>
                </exclusion>
			</exclusions>
		</dependency>  
  
  	<dependency>
			<groupId>org.bouncycastle</groupId>
			<artifactId>bcprov-jdk15on</artifactId>
			<version>1.52</version>
			<!-- <scope>provided</scope> -->
		</dependency>
  
  
  </dependencies>
  
</project>