<?xml version="1.0" encoding="UTF-8"?>
<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">
		<name>structured-content-tools</name>
		<modelVersion>4.0.0</modelVersion>
		<groupId>org.jboss.elasticsearch</groupId>
		<artifactId>structured-content-tools</artifactId>
		<version>1.3.6</version>
		<packaging>jar</packaging>
		<description>Tools to manipulate structured content</description>
		<inceptionYear>2012</inceptionYear>
		<url>http://github.com/jbossorg/structured-content-tools</url>

		<developers>
				<developer>
						<id>velias</id>
						<name>Vlastimil Elias</name>
						<email>velias@redhat.com</email>
				</developer>
		</developers>

		<licenses>
				<license>
						<name>The Apache Software License, Version 2.0</name>
						<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
						<distribution>repo</distribution>
				</license>
		</licenses>

		<scm>
				<connection>scm:git:git@github.com:jbossorg/structured-content-tools.git</connection>
				<developerConnection>scm:git:git@github.com:jbossorg/structured-content-tools.git</developerConnection>
				<url>http://github.com/jbossorg/structured-content-tools</url>
		</scm>

		<properties>
				<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
				<java.version>1.7</java.version>
				<elasticsearch.version>1.4.0</elasticsearch.version>
				<jboss.releases.repo.url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</jboss.releases.repo.url>
				<jboss.snapshots.repo.url>https://repository.jboss.org/nexus/content/repositories/snapshots/</jboss.snapshots.repo.url>
		</properties>

		<dependencies>
				<dependency>
						<groupId>org.elasticsearch</groupId>
						<artifactId>elasticsearch</artifactId>
						<version>${elasticsearch.version}</version>
						<scope>compile</scope>
				</dependency>

				<dependency>
						<!-- jsoup HTML parser library @ http://jsoup.org/ -->
						<groupId>org.jsoup</groupId>
						<artifactId>jsoup</artifactId>
						<version>1.7.3</version>
				</dependency>

				<dependency>
						<groupId>junit</groupId>
						<artifactId>junit</artifactId>
						<version>4.10</version>
						<scope>test</scope>
				</dependency>

				<dependency>
						<groupId>log4j</groupId>
						<artifactId>log4j</artifactId>
						<version>1.2.16</version>
						<scope>test</scope>
				</dependency>

				<dependency>
						<groupId>org.mockito</groupId>
						<artifactId>mockito-all</artifactId>
						<version>1.8.0</version>
						<scope>test</scope>
				</dependency>

				<dependency>
						<groupId>commons-io</groupId>
						<artifactId>commons-io</artifactId>
						<version>2.4</version>
						<scope>test</scope>
				</dependency>

		</dependencies>

		<distributionManagement>
				<repository>
						<id>jboss-releases-repository</id>
						<name>JBoss Release Repository</name>
						<url>${jboss.releases.repo.url}</url>
				</repository>
				<snapshotRepository>
						<id>jboss-snapshots-repository</id>
						<name>JBoss Snapshot Repository</name>
						<url>${jboss.snapshots.repo.url}</url>
				</snapshotRepository>
		</distributionManagement>

		<build>
				<plugins>
						<plugin>
								<groupId>org.apache.maven.plugins</groupId>
								<artifactId>maven-compiler-plugin</artifactId>
								<version>2.3.2</version>
								<configuration>
										<source>${java.version}</source>
										<target>${java.version}</target>
								</configuration>
						</plugin>
						<plugin>
								<groupId>org.apache.maven.plugins</groupId>
								<artifactId>maven-source-plugin</artifactId>
								<version>2.1.2</version>
								<executions>
										<execution>
												<id>attach-sources</id>
												<goals>
														<goal>jar</goal>
												</goals>
										</execution>
								</executions>
						</plugin>
						<plugin>
								<groupId>org.codehaus.mojo</groupId>
								<artifactId>cobertura-maven-plugin</artifactId>
								<version>2.6</version>
								<configuration>
										<format>xml</format>
										<maxmem>256m</maxmem>
										<!-- aggregated reports for multi-module projects -->
										<aggregate>true</aggregate>
								</configuration>
						</plugin>
						<plugin>
								<groupId>org.eluder.coveralls</groupId>
								<artifactId>coveralls-maven-plugin</artifactId>
								<version>3.0.1</version>
								<configuration>
								</configuration>
						</plugin>
				</plugins>
		</build>
</project>
