<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>
	<groupId>net.disy.jquery</groupId>
	<artifactId>jquery-parent</artifactId>
	<version>3</version>
	<packaging>pom</packaging>
	<name>jQuery Parent</name>
	<description>jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.</description>
	<parent>
		<groupId>net.disy.legato</groupId>
		<artifactId>legato-project</artifactId>
		<version>1</version>
	</parent>
	<scm>
		<connection>scm:svn:https://legato.svn.sourceforge.net/svnroot/legato/legato-thirdparty/jquery/trunk/jquery-parent</connection>
		<developerConnection>scm:svn:https://legato.svn.sourceforge.net/svnroot/legato/legato-thirdparty/jquery/trunk/jquery-parent</developerConnection>
		<url>http://legato.svn.sourceforge.net/viewvc/legato/legato-thirdparty/jquery/trunk/jquery-parent</url>
	</scm>
	<developers>
		<developer>
			<id>jquery</id>
			<name>The jQuery Project</name>
		</developer>
	</developers>
	<licenses>
		<license>
			<name>GPL</name>
			<url>http://github.com/jquery/jquery/blob/master/GPL-LICENSE.txt</url>
			<distribution>repo</distribution>
		</license>
		<license>
			<name>MIT License</name>
			<url>http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<modules>
		<module>../jquery</module>
		<module>../jquery-ui</module>
		<module>../jquery-ui-custom</module>
	</modules>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
		</dependency>
	</dependencies>
	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>junit</groupId>
				<artifactId>junit</artifactId>
				<version>4.8.1</version>
				<scope>test</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>
	<build>
		<defaultGoal>install</defaultGoal>
		<resources>
			<resource>
				<directory>src/main/javascript</directory>
			</resource>
			<resource>
				<directory>src/main/resources</directory>
			</resource>
		</resources>
		<plugins>
			<plugin>
				<inherited>true</inherited>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
		</plugins>
		<pluginManagement>
			<plugins>
				<plugin>
					<artifactId>maven-antrun-plugin</artifactId>
					<dependencies>
						<dependency>
							<groupId>sun.jdk</groupId>
							<artifactId>tools</artifactId>
							<version>1.5.0</version>
							<scope>system</scope>
							<systemPath>${java.home}/../lib/tools.jar</systemPath>
						</dependency>
						<dependency>
							<groupId>junit</groupId>
							<artifactId>junit</artifactId>
							<version>4.8.1</version>
							<scope>runtime</scope>
						</dependency>
						<dependency>
							<groupId>ant</groupId>
							<artifactId>ant-optional</artifactId>
							<version>1.5.3-1</version>
						</dependency>
					</dependencies>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
</project>