<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-dolphin</artifactId>
	<name>Maverick SSHD Extensions for Java SE 7</name>
	<description>Extensions for Maverick SSHD that required Java SE 7 (codename dolphin)</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>
		<plugins>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<dependencies>
		<dependency>
			<groupId>com.sshtools.maverick</groupId>
			<artifactId>sshd</artifactId>
			<version>${project.version}</version>
		</dependency>
	</dependencies>
</project>