<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>
		<groupId>net.jade-dungeon</groupId>
		<artifactId>crawler-parent</artifactId>
		<relativePath>../pom.xml</relativePath>
		<version>0.1.13</version>
	</parent>

	<artifactId>crawler-logic</artifactId>
	<name>crawler logic</name>

	<dependencies>
		<dependency>
			<groupId>net.jade-dungeon</groupId>
			<artifactId>scalautils</artifactId>
		</dependency>
		<dependency>
			<groupId>net.jade-dungeon</groupId>
			<artifactId>crawler-dto</artifactId>
		</dependency>
		<dependency>
			<groupId>net.jade-dungeon</groupId>
			<artifactId>crawler-net</artifactId>
		</dependency>
		<dependency>
			<groupId>net.jade-dungeon</groupId>
			<artifactId>javautils-mongo</artifactId>
		</dependency>
		<!-- -->
		<dependency>
			<groupId>commons-lang</groupId>
			<artifactId>commons-lang</artifactId>
		</dependency>
		<dependency>
			<groupId>commons-cli</groupId>
			<artifactId>commons-cli</artifactId>
		</dependency>
		<dependency>
			<groupId>org.jsoup</groupId>
			<artifactId>jsoup</artifactId>
		</dependency>
		<dependency>
			<groupId>org.json</groupId>
			<artifactId>json</artifactId>
		</dependency>
	</dependencies>

	<build>

		<resources>
			<resource>
				<directory>src/main/resources</directory>
				<!-- filter with: mvn resources:resources -Dparam=value -->
				<filtering>true</filtering>
				<includes>
					<include>example.properties</include>
					<include>logback.xml</include>
				</includes>
			</resource>
		</resources>
	</build>

</project>
