2012-04-06 05:58:14 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2012-04-06 08:54:20 -04:00
|
|
|
~ Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
~ or more contributor license agreements. See the NOTICE file
|
|
|
|
~ distributed with this work for additional information
|
|
|
|
~ regarding copyright ownership. The ASF licenses this file
|
|
|
|
~ to you under the Apache License, Version 2.0 (the
|
|
|
|
~ "License"); you may not use this file except in compliance
|
|
|
|
~ with the License. You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing,
|
|
|
|
~ software distributed under the License is distributed on an
|
|
|
|
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
~ KIND, either express or implied. See the License for the
|
|
|
|
~ specific language governing permissions and limitations
|
|
|
|
~ under the License.
|
2012-04-06 05:58:14 -04: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-07-31 10:09:41 -04:00
|
|
|
|
2012-04-06 05:58:14 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2012-07-31 10:09:41 -04:00
|
|
|
|
2012-04-06 05:58:14 -04:00
|
|
|
<parent>
|
2012-04-06 12:54:00 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2012-04-06 05:58:14 -04:00
|
|
|
<artifactId>redback-authentication-providers</artifactId>
|
2012-04-06 12:56:00 -04:00
|
|
|
<version>2.0-SNAPSHOT</version>
|
2012-04-06 05:58:14 -04:00
|
|
|
</parent>
|
2012-07-31 10:09:41 -04:00
|
|
|
|
2012-04-06 05:58:14 -04:00
|
|
|
<artifactId>redback-authentication-ldap</artifactId>
|
2012-07-31 10:09:41 -04:00
|
|
|
<packaging>bundle</packaging>
|
2012-04-06 05:58:14 -04:00
|
|
|
<name>Redback :: Authentication Provider :: Ldap</name>
|
2012-07-31 10:09:41 -04:00
|
|
|
|
2012-04-06 05:58:14 -04:00
|
|
|
<properties>
|
|
|
|
<apacheds.version>1.5.1</apacheds.version>
|
|
|
|
</properties>
|
2012-07-31 10:09:41 -04:00
|
|
|
|
2012-04-06 05:58:14 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2012-04-06 12:54:00 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2012-04-06 05:58:14 -04:00
|
|
|
<artifactId>redback-authentication-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-04-06 12:54:00 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2012-04-06 05:58:14 -04:00
|
|
|
<artifactId>redback-common-ldap</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-04-06 12:54:00 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2012-04-06 05:58:14 -04:00
|
|
|
<artifactId>redback-policy</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-04-06 12:54:00 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2012-04-06 05:58:14 -04:00
|
|
|
<artifactId>redback-users-ldap</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>jsr250-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.inject</groupId>
|
|
|
|
<artifactId>javax.inject</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.directory.server</groupId>
|
|
|
|
<artifactId>apacheds-core</artifactId>
|
|
|
|
<version>${apacheds.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2012-04-09 17:04:32 -04:00
|
|
|
<groupId>org.apache.archiva.redback.components</groupId>
|
2012-04-06 05:58:14 -04:00
|
|
|
<artifactId>spring-apacheds</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2012-08-01 08:25:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2012-04-06 05:58:14 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2012-07-31 10:09:41 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
</plugin>
|
2012-04-06 05:58:14 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>port-allocator-maven-plugin</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>allocate-ldap-port</id>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>allocate-ports</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<ports>
|
|
|
|
<port>
|
|
|
|
<name>ldapPort</name>
|
|
|
|
<portNumber>10390</portNumber>
|
|
|
|
</port>
|
|
|
|
</ports>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<ldapPort>${ldapPort}</ldapPort>
|
|
|
|
<basedir>${basedir}</basedir>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-07-31 10:09:41 -04:00
|
|
|
|
2012-04-06 05:58:14 -04:00
|
|
|
</project>
|