
<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>mojo</artifactId>
		<groupId>org.codehaus.mojo</groupId>
		<version>16</version>
	</parent>
	<artifactId>findbugs-maven-plugin</artifactId>
	<version>1.2</version>
	<packaging>maven-plugin</packaging>
	<name>FindBugs Maven Plugin</name>
	<issueManagement>
		<system>JIRA</system>
		<url>http://jira.codehaus.org/browse/MFINDBUGS</url>
	</issueManagement>
	<inceptionYear>2005</inceptionYear>
	<prerequisites>
		<maven>2.0.5</maven>
	</prerequisites>
	<description>
    This Plug-In generates reports based on the FindBugs Library
		</description>
	<developers>
		<developer>
			<id>cr</id>
			<name>Cyrill Ruettimann</name>
			<email>mypublicaddress@mac.com</email>
			<organization />
			<roles>
				<role>Documentation</role>
				<role>Java Developer</role>
			</roles>
			<timezone>+1</timezone>
		</developer>
		<developer>
			<id>gl</id>
			<name>Garvin LeClaire</name>
			<email>gleclaire@codehaus.org</email>
			<url>http://gdleclaire.blogspot.com</url>
			<organization />
			<roles>
				<role>Documentation</role>
				<role>Java Developer</role>
			</roles>
			<timezone>-5</timezone>
		</developer>
	</developers>
	<contributors>
		<contributor>
			<name>Detlef Pleiss</name>
			<email>d.pleiss@comundus.com</email>
			<organization>comundus GmbH</organization>
			<organizationUrl>http://www.comundus.com</organizationUrl>
			<roles>
				<role>Java Developer</role>
			</roles>
			<timezone>+1</timezone>
		</contributor>
	</contributors>
	<licenses>
		<license>
			<name>Apache 2.0</name>
			<url>LICENSE.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<properties>
		<doxia.version>1.0-alpha-8</doxia.version>
		<groovy.plugin.version>1.0-beta-2</groovy.plugin.version>
	</properties>
	<dependencies>
		<dependency>
			<groupId>org.apache.maven.reporting</groupId>
			<artifactId>maven-reporting-impl</artifactId>
			<version>2.0.4</version>
		</dependency>
		<dependency>
			<groupId>org.apache.maven.reporting</groupId>
			<artifactId>maven-reporting-api</artifactId>
			<version>2.0.5</version>
		</dependency>
		<dependency>
			<groupId>org.apache.maven.doxia</groupId>
			<artifactId>doxia-core</artifactId>
			<version>${doxia.version}</version>
		</dependency>
		<dependency>
			<groupId>net.sourceforge.findbugs</groupId>
			<artifactId>findbugs</artifactId>
			<version>1.2.1</version>
		</dependency>
		<dependency>
			<groupId>org.codehaus.mojo.groovy</groupId>
			<artifactId>groovy-mojo-support</artifactId>
			<version>${groovy.plugin.version}</version>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo.groovy</groupId>
				<artifactId>groovy-maven-plugin</artifactId>
				<version>${groovy.plugin.version}</version>
				<executions>
					<execution>
						<goals>
							<goal>compile</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-plugin-plugin</artifactId>
				<version>2.3</version>
				<dependencies>
					<dependency>
						<groupId>org.codehaus.mojo.groovy</groupId>
						<artifactId>groovy-mojo-tools</artifactId>
						<version>${groovy.plugin.version}</version>
					</dependency>
				</dependencies>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-eclipse-plugin</artifactId>
				<configuration>
					<additionalProjectnatures>
						<projectnature>org.codehaus.groovy.eclipse.groovyNature</projectnature>
					</additionalProjectnatures>
					<additionalBuildcommands>
						<buildcommand>org.codehaus.groovy.eclipse.groovyBuilder</buildcommand>
					</additionalBuildcommands>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-changes-plugin</artifactId>
				<reportSets>
					<reportSet>
						<reports>
							<report>changes-report</report>
						</reports>
					</reportSet>
				</reportSets>
				<configuration>
					<issueLinkTemplate>http://jira.codehaus.org/browse/%ISSUE%</issueLinkTemplate>
				</configuration>
			</plugin>
		</plugins>
	</reporting>

  <scm>
    <connection>scm:svn:http://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.2</connection>
    <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.2</developerConnection>
    <url>http://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.2</url>
  </scm>
</project>
