<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.jenkins-ci.plugins</groupId>
		<artifactId>plugin</artifactId>
		<version>1.436</version>
	</parent>

	<name>LDAP Email Plugin</name>
	<description>
		Jenkins plugin that resolves email addresses through LDAP lookups.
	</description>
	
	<url>http://wiki.jenkins-ci.org/display/JENKINS/LDAP+Email+Plugin</url>

	<groupId>com.mtvi.plateng.hudson</groupId>
	<artifactId>ldapemail</artifactId>
	<packaging>hpi</packaging>
	<version>0.8</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>

    <repositories>
        <repository>
            <id>repo.jenkins-ci.org</id>
            <url>http://repo.jenkins-ci.org/public/</url>
        </repository>
        <repository>
            <!-- Added this repository for ddsteps denpendency -->
            <id>maven.wso2.org</id>
            <url>http://maven.wso2.org/nexus/content/groups/wso2-public</url>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>repo.jenkins-ci.org</id>
            <url>http://repo.jenkins-ci.org/public/</url>
        </pluginRepository>
    </pluginRepositories>

    <scm>
        <connection>scm:git:git://github.com/jenkinsci/ldapemail-plugin.git</connection>
        <developerConnection>scm:git:git@github.com:jenkinsci/ldapemail-plugin.git</developerConnection>
        <url>https://github.com/jenkinsci/ldapemail-plugin</url>
        <tag>ldapemail-0.8</tag>
    </scm>
</project>  
  

