<?xml version="1.0"?>
<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>org.apache.wicket</groupId>
    <artifactId>wicket-parent</artifactId>
    <version>1.5-RC5.1</version>
    <relativePath>../pom.xml</relativePath>
  </parent>
  <artifactId>wicket</artifactId>
  <packaging>pom</packaging>
  <name>Wicket</name>
  <description>
	A module that provides dependencies to all core submodules
	needed to run Wicket application. This way Maven users can
	depend only on this module without bothering that Wicket core depends on several modules.
  </description>
  <dependencies>
    <dependency>
      <groupId>org.apache.wicket</groupId>
      <artifactId>wicket-core</artifactId>
      <version>${project.parent.version}</version>
    </dependency>
  </dependencies>
  <build>
	<plugins>
		<plugin>
			<!-- Do not create (and deploy) -tests.jar for this project -->
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-jar-plugin</artifactId>
			<version>2.3.1</version>
			<executions>
				<execution>
					<goals>
						<goal>test-jar</goal>
					</goals>
					<configuration>
						<skip>true</skip>
					</configuration>
				</execution>
			</executions>
		</plugin>
	</plugins>
  </build>
</project>
