2013-12-09 13:29:02 +01:00
|
|
|
<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">
|
2012-05-30 18:53:53 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2013-12-09 13:22:29 +01:00
|
|
|
|
2012-05-30 18:53:53 +02:00
|
|
|
<parent>
|
|
|
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
|
|
|
<artifactId>plugin</artifactId>
|
2014-08-12 11:51:41 +02:00
|
|
|
<version>1.566</version>
|
2012-05-30 18:53:53 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>ldap</artifactId>
|
2014-05-23 16:13:15 +02:00
|
|
|
<version>1.11-SNAPSHOT</version>
|
2012-05-30 18:53:53 +02:00
|
|
|
<packaging>hpi</packaging>
|
2013-12-09 13:22:29 +01:00
|
|
|
|
2012-06-06 05:59:09 +02:00
|
|
|
<name>LDAP Plugin</name>
|
|
|
|
|
<description>Adds LDAP authentication to Jenkins</description>
|
2012-05-30 18:53:53 +02:00
|
|
|
<url>http://wiki.jenkins-ci.org/display/JENKINS/LDAP+Plugin</url>
|
2013-12-09 13:22:29 +01:00
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>The MIT license</name>
|
|
|
|
|
<url>http://www.opensource.org/licenses/mit-license.php</url>
|
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<maven-hpi-plugin.version>1.96</maven-hpi-plugin.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
|
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
|
|
|
|
|
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
|
2014-05-23 16:13:15 +02:00
|
|
|
<tag>HEAD</tag>
|
2013-12-09 13:22:29 +01:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>repo.jenkins-ci.org</id>
|
|
|
|
|
<url>http://repo.jenkins-ci.org/public/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
<pluginRepositories>
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
<id>repo.jenkins-ci.org</id>
|
|
|
|
|
<url>http://repo.jenkins-ci.org/public/</url>
|
|
|
|
|
</pluginRepository>
|
|
|
|
|
</pluginRepositories>
|
2012-05-30 18:53:53 +02:00
|
|
|
|
2014-08-12 11:51:41 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
|
|
|
<artifactId>mailer</artifactId>
|
|
|
|
|
<version>1.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
2012-05-30 18:53:53 +02:00
|
|
|
<build>
|
2014-05-23 15:12:01 +02:00
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
|
<version>2.5</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
2012-05-30 18:53:53 +02:00
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
2012-05-30 19:30:25 +02:00
|
|
|
<!-- details defined in the parent POM -->
|
2012-05-30 18:53:53 +02:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.gmaven</groupId>
|
|
|
|
|
<artifactId>gmaven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>test-in-groovy</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>testCompile</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<!-- 1.8 not yet supported by plugin but 1.7 works
|
|
|
|
|
here so long as we provide explicit version -->
|
|
|
|
|
<providerSelection>1.7</providerSelection>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.gmaven.runtime</groupId>
|
|
|
|
|
<artifactId>gmaven-runtime-1.7</artifactId>
|
|
|
|
|
<version>1.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
|
<version>1.8.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Usually a dependency of ant, but some people seem to have an incomplete ant POM. See JENKINS-11416 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
|
<artifactId>ant-launcher</artifactId>
|
|
|
|
|
<version>1.8.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2012-05-30 19:30:25 +02:00
|
|
|
</plugin>
|
2012-12-05 23:23:29 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.12.4</version>
|
|
|
|
|
</plugin>
|
2014-05-09 12:15:32 +02:00
|
|
|
<plugin>
|
|
|
|
|
<!-- TODO remove when on a parent with the updated m-r-p -->
|
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
|
<version>2.5</version>
|
|
|
|
|
</plugin>
|
2013-12-09 13:22:29 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.jenkins-ci.tools</groupId>
|
|
|
|
|
<artifactId>maven-hpi-plugin</artifactId>
|
|
|
|
|
<version>${maven-hpi-plugin.version}</version>
|
|
|
|
|
<configuration>
|
2014-05-09 11:23:19 +02:00
|
|
|
<compatibleSinceVersion>1.9</compatibleSinceVersion>
|
2013-12-09 13:22:29 +01:00
|
|
|
<systemProperties>
|
|
|
|
|
<hudson.bundled.plugins>${basedir}/work/plugins/ldap.hpl</hudson.bundled.plugins>
|
|
|
|
|
</systemProperties>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2012-05-30 19:30:25 +02:00
|
|
|
</plugins>
|
2012-05-30 18:53:53 +02:00
|
|
|
</build>
|
|
|
|
|
|
2013-12-09 13:22:29 +01:00
|
|
|
</project>
|