<?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">

	<parent>
    	<groupId>org.sonatype.oss</groupId>
    	<artifactId>oss-parent</artifactId>
    	<version>7</version>
	</parent>

	<modelVersion>4.0.0</modelVersion>

	<groupId>com.github.sevntu-checkstyle</groupId>
	<artifactId>dsm-maven-plugin</artifactId>
	<version>2.1.1</version>

	<packaging>maven-plugin</packaging>
	<name>DSM maven plugin</name>
	<url>https://github.com/sevntu-checkstyle/maven-dsm-report</url>
	<issueManagement>
		<system>GitHub</system>
		<url>https://github.com/sevntu-checkstyle/maven-dsm-report/issues</url>
	</issueManagement>
	<inceptionYear>2011</inceptionYear>

	<description>Tool for generating report containing Dependency Structure Matrix for the maven site</description>

	<licenses>
		<license>
			<name>Eclipse Public License</name>
			<url>http://www.eclipse.org/legal/epl-v10.html</url>
		</license>
	</licenses>

	<scm>
		<connection>scm:git:git@github.com:sevntu-checkstyle/dsm-maven-plugin.git</connection>
		<developerConnection>scm:git:git@github.com:sevntu-checkstyle/dsm-maven-plugin.git</developerConnection>
		<url>https://github.com/sevntu-checkstyle/dsm-maven-plugin</url>
	</scm>

	<developers>
		<developer>
			<name>Yuri Balakhonov</name>
		</developer>
		<developer>
			<name>Roman Ivanov</name>
		</developer>
		<developer>
			<name>Ivan Sopov</name>
			<email>sopov.ivan@gmail.com</email>
			<url>http://moradanen.sopovs.com</url>
		</developer>
		<developer>
            <name>Ilja Dubinin</name>
        </developer> 
	</developers>

	<dependencies>
		<dependency>
			<groupId>org.dtangler</groupId>
			<artifactId>dtangler-core</artifactId>
			<version>2.0.0</version>
		</dependency>
		
		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava</artifactId>
			<version>16.0.1</version>
		</dependency>

		<dependency>
			<groupId>org.apache.maven.reporting</groupId>
			<artifactId>maven-reporting-api</artifactId>
			<version>3.0</version>
		</dependency>

		<dependency>
			<groupId>org.apache.maven.reporting</groupId>
			<artifactId>maven-reporting-impl</artifactId>
			<version>2.2</version>
		</dependency>

		<dependency>
			<groupId>org.codehaus.plexus</groupId>
			<artifactId>plexus-utils</artifactId>
			<version>3.0</version>
		</dependency>

		<dependency>
			<groupId>org.freemarker</groupId>
			<artifactId>freemarker</artifactId>
			<version>2.3.18</version>
		</dependency>

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

		<dependency>
			<groupId>org.apache.maven.shared</groupId>
			<artifactId>maven-plugin-testing-harness</artifactId>
			<version>1.1</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.apache.maven.doxia</groupId>
			<artifactId>doxia-sink-api</artifactId>
			<version>1.2</version>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>

			<plugin>
	            <groupId>org.apache.maven.plugins</groupId>
	            <artifactId>maven-source-plugin</artifactId>
	            <version>2.2.1</version>
	            <executions>
	                <execution>
	                    <id>attach-sources</id>
	                    <phase>package</phase>
	                    <goals>
	                        <goal>jar</goal>
	                    </goals>
	                </execution>
	            </executions>
	        </plugin>

	        <plugin>
	            <groupId>org.apache.maven.plugins</groupId>
	            <artifactId>maven-javadoc-plugin</artifactId>
	            <version>2.9</version>
	            <executions>
	                <execution>
	                    <id>attach-javadocs</id>
	                    <phase>package</phase>
	                    <goals>
	                        <goal>jar</goal>
	                    </goals>
	                </execution>
	            </executions>
	        </plugin>

	        <plugin>
				<groupId>org.apache.maven.plugins</groupId>
	            <artifactId>maven-gpg-plugin</artifactId>
	            <version>1.4</version>
	            <executions>
	            	<execution>
	                	<id>sign-artifacts</id>
	                    <phase>verify</phase>
	                    <goals>
	                    	<goal>sign</goal>
	                    </goals>
	                </execution>
				</executions>
			</plugin>

		</plugins>
	</build>

</project>
