dlic-search-guard-authbackend-ldap
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.floragunn</groupId>
<artifactId>dlic-search-guard-authbackend-ldap</artifactId>
<version>6.0-20.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- * Copyright 2016 by floragunn GmbH - All rights reserved
* * * Unless required by applicable law or agreed to in writing, software
* distributed here is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES
OR CONDITIONS OF ANY KIND, either express or implied. * * This software is
free of charge for non-commercial and academic use. * For commercial use
in a production environment you have to obtain a license * from https://floragunn.com -->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!--http://svn.apache.org/viewvc/directory/apacheds/trunk/ldap-client-test/src/test/java/org/apache/directory/shared/client/api/LdapConnectionTest.java?revision=1243572&view=markup -->
<parent>
<groupId>com.floragunn</groupId>
<artifactId>search-guard-parent</artifactId>
<version>6.20.0</version>
</parent>
<artifactId>dlic-search-guard-authbackend-ldap</artifactId>
<version>6.0-20.1</version>
<packaging>jar</packaging>
<name>Search Guard LDAP</name>
<description>Provide access control related features for elasticsearch</description>
<url>https://github.com/floragunncom/search-guard-authbackend-ldap</url>
<inceptionYear>2016</inceptionYear>
<properties>
<sg2.version>6.1-20.0-api</sg2.version>
<elasticsearch.version>6.1.0</elasticsearch.version>
<apache.ds.version>2.0.0-M21</apache.ds.version>
</properties>
<scm>
<url>https://github.com/floragunncom/search-guard-authbackend-ldap</url>
<connection>scm:git:git@github.com:floragunncom/search-guard-authbackend-ldap.git</connection>
<developerConnection>scm:git:git@github.com:floragunncom/search-guard-authbackend-ldap.git</developerConnection>
<tag>ves-6.0-20.1</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/floragunncom/search-guard-authbackend-ldap/issues</url>
</issueManagement>
<contributors />
<dependencies>
<dependency>
<groupId>com.floragunn</groupId>
<artifactId>search-guard-6</artifactId>
<version>${sg2.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.floragunn</groupId>
<artifactId>search-guard-6</artifactId>
<version>${sg2.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.9.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>${elasticsearch.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>commons-cli</artifactId>
<groupId>commons-cli</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.floragunn</groupId>
<artifactId>ldaptive</artifactId>
<version>1.1.0-fg-fork1</version>
<exclusions>
<exclusion>
<artifactId>commons-cli</artifactId>
<groupId>commons-cli</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<!--<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency> -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.9.1</version>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Only test scoped dependencies hereafter -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.directory.server</groupId>
<artifactId>apacheds-all</artifactId>
<version>${apache.ds.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId>
<version>1.7.21</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> -->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<!-- <plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin> -->
</plugins>
</build>
</project>