ldapemail
Used in: 
components
- OverviewOverview
 - VersionsVersions
 - DependentsDependents
 - DependenciesDependencies
 
<dependency>
    <groupId>com.mtvi.plateng.hudson</groupId>
    <artifactId>ldapemail</artifactId>
    <version>0.6</version>
</dependency><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.318</version>
		<relativePath>../pom.xml</relativePath>
	</parent>
	<name>LDAP Email Plugin</name>
	<description>
		Hudson plugin that resolves email addresses through LDAP lookups.
	</description>
	
	<url>http://wiki.hudson-ci.org/display/HUDSON/LDAP+Email+Plugin</url>
	<groupId>com.mtvi.plateng.hudson</groupId>
	<artifactId>ldapemail</artifactId>
	<packaging>hpi</packaging>
	<version>0.6</version>
	<developers>
	    <developer>
		<id>justinedelson</id>
		<name>Justin Edelson</name>
	    </developer>
	</developers>
	<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.6</connection>
    <developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/ldapemail-0.6</developerConnection>
    <url>https://hudson.dev.java.net/source/browse/hudson/tags/ldapemail-0.6</url>
  </scm>
</project>