<!-- Copyright (c) 2013-14 LogonBox Limited. All rights reserved. This 
	program and the accompanying materials are made available under the terms 
	of the GNU Public License v3.0 which accompanies this distribution, and is 
	available at http://www.gnu.org/licenses/gpl.html -->
<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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>com.hypersocket</groupId>
		<artifactId>hypersocket-enterprise</artifactId>
		<version>2.4.0-SNAPSHOT</version>
	</parent>
	<artifactId>x-hyperticket</artifactId>
	<name>Hyperticket - Ticketing</name>
	<description>Provides a default configuration for, and builds on x-hypersocket-issues and x-hypersocket-inbox to provide a full support ticket and bug tracking system</description>

	<dependencies>
		<dependency>
			<groupId>com.hypersocket</groupId>
			<artifactId>server-core</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.jsoup</groupId>
			<artifactId>jsoup</artifactId>
			<version>1.12.1</version>
		</dependency>

		<dependency>
			<groupId>com.hypersocket</groupId>
			<artifactId>x-hypersocket-issues</artifactId>
			<version>${project.version}</version>
		</dependency>

		<dependency>
			<groupId>com.sshtools</groupId>
			<artifactId>sshtools-sshd</artifactId>
			<version>${project.version}</version>
		</dependency>

		<dependency>
			<groupId>com.hypersocket</groupId>
			<artifactId>x-hypersocket-kb</artifactId>
			<version>${project.version}</version>
		</dependency>

		<dependency>
			<groupId>com.hypersocket</groupId>
			<artifactId>hypersocket-inbox</artifactId>
			<version>${project.version}</version>
		</dependency>

</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>com.logonbox</groupId>
				<artifactId>logonbox-plugin-generator</artifactId>
				<executions>
					<execution>
						<id>generate-plugin</id>
						<phase>package</phase>
						<goals>
							<goal>generate-plugin</goal>
						</goals>
						<configuration>
							<resolvedDependenciesProject>app-enterprise</resolvedDependenciesProject>
							<dependencies>
								<dependency>server-core</dependency>
							</dependencies>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
		<pluginManagement>
			<plugins>
				<!--This plugin's configuration is used to store Eclipse m2e settings 
					only. It has no influence on the Maven build itself. -->
				<plugin>
					<groupId>org.eclipse.m2e</groupId>
					<artifactId>lifecycle-mapping</artifactId>
					<version>1.0.0</version>
					<configuration>
						<lifecycleMappingMetadata>
							<pluginExecutions>
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>com.logonbox</groupId>
										<artifactId>logonbox-plugin-generator</artifactId>
										<versionRange>[0.0.1-SNAPSHOT,)</versionRange>
										<goals>
											<goal>resolve-dependencies</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore></ignore>
									</action>
								</pluginExecution>
							</pluginExecutions>
						</lifecycleMappingMetadata>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
</project>
