<?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/xsd/maven-4.0.0.xsd">

	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>eu.europa.ec.joinup.sd-dss</groupId>
		<artifactId>sd-dss</artifactId>
		<version>6.4.RC1</version>
	</parent>

	<artifactId>dss-pades</artifactId>
	<name>DSS PAdES</name>
	<description>DSS PAdES contains the code for the creation and validation of PAdES signatures.</description>
	
	<properties>
		<module-name>jpms_dss_pades</module-name>
	</properties>
	
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<excludes>
						<exclude>eu/**/suite/*Test.java</exclude>
						<exclude>eu/**/suite/**/*Test.java</exclude>
					</excludes>
				</configuration>	
			</plugin>
		</plugins>
	</build>

  	<dependencies>
        <dependency>
            <groupId>eu.europa.ec.joinup.sd-dss</groupId>
            <artifactId>dss-cades</artifactId>
        </dependency>
		<dependency>
			<groupId>eu.europa.ec.joinup.sd-dss</groupId>
			<artifactId>dss-validation</artifactId>
			<optional>true</optional>
		</dependency>
		
		<dependency>
			<groupId>eu.europa.ec.joinup.sd-dss</groupId>
			<artifactId>dss-test</artifactId>
			<type>test-jar</type>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<profiles>
		<profile>
			<id>quick-init</id>
			<properties>
				<maven.test.skip>false</maven.test.skip>
				<skipTests>true</skipTests>
			</properties>
		</profile>
	</profiles>
	
</project>