<?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.24</version>
	</parent>
	<modelVersion>4.0.0</modelVersion>

	<groupId>net.stickycode.deploy</groupId>
	<artifactId>sticky-deployer-embedded</artifactId>
	<version>0.4</version>
	<packaging>jar</packaging>

	<name>sticky-deployer-embedded-0</name>

	<inceptionYear>2010</inceptionYear>
	<dependencies>
		<dependency>
			<groupId>net.stickycode.composite</groupId>
			<artifactId>sticky-composite-unittest</artifactId>
			<version>[2.1,3)</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>net.stickycode.deploy.sample</groupId>
			<artifactId>sticky-deployer-sample-helloworld</artifactId>
			<version>[1.4,2)</version>
			<scope>provided</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<version>2.2</version>
				<configuration>
					<archive>
						<manifest>
							<mainClass>net.stickycode.deploy.bootstrap.StickyLauncher</mainClass>
						</manifest>
					</archive>
					<finalName>${project.artifactId}</finalName>
				</configuration>
				<executions>
					<execution>
						<id>sample-application</id>
						<phase>package</phase>
						<goals>
							<goal>single</goal>
						</goals>
						<configuration>
							<descriptors>
								<descriptor>src/main/assembly/sample.xml</descriptor>
							</descriptors>
						</configuration>
					</execution>

					<execution>
						<id>sample-application2</id>
						<phase>package</phase>
						<goals>
							<goal>single</goal>
						</goals>
						<configuration>
							<descriptors>
								<descriptor>src/main/assembly/sample2.xml</descriptor>
							</descriptors>
						</configuration>
					</execution>

				</executions>
			</plugin>

		</plugins>
	</build>

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