<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>com.googlecode.todomap</groupId>
	<artifactId>maven-jettygzip-plugin</artifactId>
	<packaging>maven-plugin</packaging>
	<name>Jetty Gzip Plugin</name>
	<version>0.0.4</version>
	<licenses>
		<license>
			<name>ASL-2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
		</license>
	</licenses>
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
	<dependencies>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-plugin-api</artifactId>
			<version>2.0</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.7</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>commons-lang</groupId>
			<artifactId>commons-lang</artifactId>
			<version>2.6</version>
		</dependency>
	</dependencies>
	<description>Compresses the static web resource files with gzip.</description>
	<url>http://code.google.com/p/todomap/wiki/JettyGzipPlugin</url>
	<inceptionYear>2009</inceptionYear>
	<issueManagement>
		<system>Google code</system>
		<url>http://code.google.com/p/todomap/issues/list</url>
	</issueManagement>
	<scm>
		<connection>scm:svn:http://todomap.googlecode.com/svn/maven-jettygzip-plugin/tags/maven-jettygzip-plugin-0.0.4</connection>
		<developerConnection>scm:svn:https://todomap.googlecode.com/svn/maven-jettygzip-plugin/tags/maven-jettygzip-plugin-0.0.4</developerConnection>
		<url>http://code.google.com/p/todomap/source/browse/#svn/maven-jettygzip-plugin/tags/maven-jettygzip-plugin-0.0.4</url>
	</scm>
	<build>
		<extensions>
			<extension>
				<groupId>org.apache.maven.wagon</groupId>
				<artifactId>wagon-ssh</artifactId>
				<version>2.2</version>
			</extension>
		</extensions>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.0.2</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>
