<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>
	<artifactId>sshd</artifactId>
	<name>Maverick SSHD</name>
	<description>Maverick SSHD</description>
	<parent>
		<groupId>com.sshtools.maverick</groupId>
		<artifactId>sshd-group</artifactId>
		<version>1.5.0-SNAPSHOT</version>
		<relativePath>../sshd-group</relativePath>
	</parent>
	<build> 
		<sourceDirectory>src/main/java</sourceDirectory>
		<testSourceDirectory>src/test/java</testSourceDirectory>
		<outputDirectory>target/classes</outputDirectory>
		<testOutputDirectory>target/test-classes</testOutputDirectory>
		<resources>
			<resource>
				<targetPath>.</targetPath>
				<directory>src/main/resources</directory>
			</resource>
		</resources>
		<testResources>
			<testResource>
				<targetPath>.</targetPath>
				<directory>src/test/resources</directory>
			</testResource>
		</testResources>
	</build>
	<dependencies>
		<dependency>
			<groupId>com.sshtools.maverick</groupId>
			<artifactId>maverick</artifactId>
			<version>${maverickVersion}</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>com.sshtools.maverick</groupId>
			<artifactId>sshd-nio</artifactId>
			<version>${project.version}</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>com.sshtools.maverick</groupId>
			<artifactId>maverick-common</artifactId>
			<version>${maverickVersion}</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>com.sshtools.maverick</groupId>
			<artifactId>sshd-jline</artifactId>
			<version>${project.version}</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
				<dependency>
			<groupId>com.sshtools.maverick</groupId>
			<artifactId>maverick-vfs-ssh</artifactId>
			<version>${maverickVersion}</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>com.sshtools.maverick</groupId>
			<artifactId>maverick-vfs-webdav</artifactId>
			<version>${maverickOpensourceVersion}</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>jcifs</groupId>
			<artifactId>jcifs</artifactId>
			<version>1.3.14</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>commons-configuration</groupId>
			<artifactId>commons-configuration</artifactId>
			<version>1.6</version>
			<type>jar</type>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>commons-cli</groupId>
			<artifactId>commons-cli</artifactId>
			<version>1.2</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.16</version>
			<type>bundle</type>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>bsh</groupId>
			<artifactId>bsh</artifactId>
			<version>2.1b4</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
		<dependency>
 			<groupId>net.sf.ehcache</groupId>
  			<artifactId>ehcache-core</artifactId>
  			<version>2.5.1</version>
		</dependency>
	</dependencies>
</project>