2011-01-06 20:32:00 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<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>scm-plugins</artifactId>
|
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
2011-05-17 09:00:48 +02:00
|
|
|
<version>1.2</version>
|
2011-01-06 20:32:00 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-auth-ldap-plugin</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
2011-05-17 09:06:56 +02:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2011-01-06 20:32:00 +01:00
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
<description>plugin description</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
<version>${servlet.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- test scope -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-test</artifactId>
|
2011-05-08 14:15:31 +02:00
|
|
|
<version>1.3-SNAPSHOT</version>
|
2011-01-06 20:32:00 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
2011-05-17 12:37:03 +02:00
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
|
<id>maven.scm-manager.org</id>
|
|
|
|
|
<name>scm-manager release repository</name>
|
|
|
|
|
<url>http://maven.scm-manager.org/nexus/content/groups/public</url>
|
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
|
|
</repositories>
|
2011-01-06 20:32:00 +01:00
|
|
|
|
|
|
|
|
</project>
|