<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>
	<parent>
		<artifactId>asyncbase</artifactId>
		<groupId>com.github.podal.async</groupId>
		<version>1.0.0</version>
	</parent>
	<artifactId>asyncdefault</artifactId>
	<packaging>jar</packaging>

	<name>Asynchronous tools Default Impl</name>
	<description>ASync is an asynchronous library to handle asynchronous communication over sockets, console and web. Default impl.</description>
	<url>https://github.com/podal/async</url>

	<licenses>
		<license>
			<name>MIT License</name>
			<url>https://github.com/podal/async/blob/master/LICENSE.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<dependencies>
		<dependency>
			<groupId>com.github.podal.async</groupId>
			<artifactId>async</artifactId>
			<version>1.0.0</version>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<version>1.8.5</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.8.1</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>
