<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>org.jvnet.hudson.plugins</groupId>
		<artifactId>plugin</artifactId>
		<version>1.252</version>
		<relativePath>../pom.xml</relativePath>
	</parent>

	<name>LDAP Email Plugin</name>
	<description>
		Hudson plugin that resolves email addresses through LDAP
		lookups.
	</description>
	
	<url>http://hudson.gotdns.com/wiki/display/HUDSON/LDAP+Email+Plugin</url>

	<groupId>com.mtvi.plateng.hudson</groupId>
	<artifactId>ldapemail</artifactId>
	<packaging>hpi</packaging>
	<version>0.2</version>

	<dependencies>
        <dependency>
            <groupId>com.mtvi.plateng</groupId>
            <artifactId>test-support</artifactId>
            <version>1.0-alpha-4</version>
            <scope>test</scope>
        </dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.4</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<defaultGoal>package</defaultGoal>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-checkstyle-plugin</artifactId>
				<version>2.1</version>
				<configuration>
					<configLocation>
						http://buildtools.mtvitech.com/resources/checkstyle.xml
					</configLocation>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
				<version>2.2</version>
				<configuration>
					<formats>
						<format>xml</format>
					</formats>
				</configuration>
			</plugin>
			<plugin>
				<groupId>com.google.code.maven-license-plugin</groupId>
				<artifactId>maven-license-plugin</artifactId>
				<version>1.2.5</version>
				<configuration>
					<header>
						http://buildtools.mtvitech.com/resources/license.txt
					</header>
					<excludes>
						<exclude>target*/**</exclude>
					</excludes>
					<mapping>
						<jelly>xml</jelly>
					</mapping>
				</configuration>
			</plugin>
		</plugins>
	</build>

  <scm>
    <connection>scm:svn:https://guest@svn.dev.java.net/svn/hudson/tags/ldapemail-0.2</connection>
    <developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/ldapemail-0.2</developerConnection>
    <url>https://hudson.dev.java.net/source/browse/hudson/hudson/plugins/ldapemail/tags/ldapemail-0.2</url>
  </scm>
</project>
