<?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.wicketstuff</groupId>
		<artifactId>wicketstuff-core</artifactId>
		<version>7.7.0</version>
	</parent>

	<artifactId>progressbar-parent</artifactId>

	<packaging>pom</packaging>
	<url>http://wicketstuff.org/</url>
	<inceptionYear>2007</inceptionYear>

	<description>Parent project for wicketstuff progressbar project</description>

	<modules>
		<module>progressbar</module>
		<module>progressbar-spring</module>
		<module>progressbar-example</module>
	</modules>
	<properties>
	    <skip.module.tests>false</skip.module.tests>
	</properties>

	<developers>
		<developer>
			<name>Christopher Hlubek</name>
			<id>hlubek</id>
			<email>hlubek at users.sf.net</email>
		</developer>
	</developers>
	
	<profiles>
	    <profile>
		<id>SKIP_MODULE_TESTS</id>
		<properties>
		    <skip.module.tests>true</skip.module.tests>
		</properties>
	    </profile>
	</profiles>	

	<dependencies>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>javax.servlet-api</artifactId>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
		</dependency>
	</dependencies>
	<build>
	    <plugins>
		<plugin>
		    <groupId>org.apache.maven.plugins</groupId>
		    <artifactId>maven-surefire-plugin</artifactId>
		    <configuration>
		        <skipTests>${skip.module.tests}</skipTests>
		    </configuration>
		</plugin>
	    </plugins>
	</build>
</project>
