<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>jquery-parent</artifactId>
		<version>1.4.7</version>
	</parent>

	<artifactId>jquery</artifactId>
	<packaging>jar</packaging>

	<name>JQuery Integration</name>
	<description>JQuery integration for Wicket</description>
	<developers>
		<developer>
			<id>david.bernard</id>
			<name>David Bernard</name>
			<email>dwayneb at users.sf.net</email>
			<timezone>+1</timezone>
		</developer>
		<developer>
			<id>xhanin</id>
			<name>Xavier Hanin</name>
		</developer>
		<developer>
			<id>edvinsyse</id>
			<name>Edvin Syse</name>
			<email>edvinsyse at users.sf.net</email>
			<timezone>+1</timezone>
		</developer>
	</developers>

	<build>
	        <plugins>
			<plugin>
				<groupId>net.sf.alchim</groupId>
				<artifactId>yuicompressor-maven-plugin</artifactId>
				<executions>
					<execution>
						<phase>process-resources</phase>
						<goals>
							<!--goal>jslint</goal-->
							<goal>compress</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<nosuffix>true</nosuffix>
					<force>false</force>
					<excludes>
						<exclude>**/interface-*.js</exclude>
						<exclude>**/*pack.js</exclude>
						<exclude>**/compressed.css</exclude>
						<exclude>**/crop.css</exclude>
						<exclude>**/*.java</exclude>
						<exclude>**/*.html</exclude>
						<exclude>**/*.xml</exclude>
						<exclude>**/*.properties</exclude>
					</excludes>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<dependencies>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.wicket</groupId>
			<artifactId>wicket-extensions</artifactId>
		</dependency>
		<!--	
		<dependency>
			<groupId>org.wicketstuff</groupId>
			<artifactId>wicketstuff-misc</artifactId>
			<version>0.1</version>
		</dependency>
		-->
		<dependency>
			<groupId>org.wicketstuff</groupId>
			<artifactId>misc</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>net.sf.json-lib</groupId>
			<artifactId>json-lib</artifactId>
			<version>2.2.2</version>
			<classifier>jdk15</classifier>
		</dependency>
		<dependency>
			<groupId>org.testng</groupId>
			<artifactId>testng</artifactId>
			<classifier>jdk15</classifier>
			<version>5.7</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>
