<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2012 RedEngine Ltd, http://www.redengine.co.nz. All rights reserved. -->
<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">
	<parent>
		<groupId>net.stickycode.parent</groupId>
		<artifactId>sticky-jar</artifactId>
		<version>1.22</version>
	</parent>
	<modelVersion>4.0.0</modelVersion>

	<groupId>net.stickycode.deploy</groupId>
	<artifactId>sticky-embedded-tomcat7</artifactId>
	<version>0.2</version>
	<packaging>jar</packaging>

	<name>sticky-embedded-tomcat7</name>

	<inceptionYear>2012</inceptionYear>
	<dependencies>
		<dependency>
			<groupId>net.stickycode.composite</groupId>
			<artifactId>sticky-composite-unittest</artifactId>
			<version>[1.7,2)</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.apache.tomcat</groupId>
			<artifactId>tomcat-coyote</artifactId>
			<version>[7.0.33]</version>
			<exclusions>
				<exclusion>
					<artifactId>annotations-api</artifactId>
					<groupId>org.apache.tomcat</groupId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>org.apache.tomcat</groupId>
			<artifactId>tomcat-catalina</artifactId>
			<version>[7.0.33]</version>
		</dependency>

		<dependency>
			<groupId>net.stickycode.deploy</groupId>
			<artifactId>sticky-signal</artifactId>
			<version>[2.1,3)</version>
		</dependency>
	</dependencies>


	<build>
		<plugins>
			<plugin>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<manifest>
							<mainClass>net.stickycode.deploy.tomcat.EmbeddedTomcat</mainClass>
							<packageName>Bootstrap of Tomcat7 that launches a war without the need for extraction</packageName>
						</manifest>
					</archive>
				</configuration>
			</plugin>
		</plugins>

	</build>

  <scm>
    <connection>scm:svn:http://source.stickycode.net/tags/net.stickycode.deploy/sticky-embedded-tomcat7-0.2</connection>
    <developerConnection>scm:svn:http://source.stickycode.net/tags/net.stickycode.deploy/sticky-embedded-tomcat7-0.2</developerConnection>
    <url>scm:svn:http://source.stickycode.net/tags/net.stickycode.deploy/sticky-embedded-tomcat7-0.2</url>
  </scm>
</project>
