2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-17 10:52:27 -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/xsd/maven-4.0.0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-02-15 14:26:00 -05:00
|
|
|
<artifactId>spring-security-ldap</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>0.1-SNAPSHOT</version>
|
2020-02-15 14:26:00 -05:00
|
|
|
<name>spring-security-ldap</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2024-02-25 16:46:11 -05:00
|
|
|
<artifactId>parent-boot-3</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2024-02-25 16:46:11 -05:00
|
|
|
<relativePath>../../parent-boot-3</relativePath>
|
2019-10-31 21:43:47 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Spring Boot Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
2020-03-29 17:54:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- LDAP Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-ldap</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<!-- Is the ApacheDS server - 1.5.6 and 1.5.7 don't work -->
|
|
|
|
<groupId>org.apache.directory.server</groupId>
|
|
|
|
<artifactId>apacheds-server-jndi</artifactId>
|
|
|
|
<version>${apacheds.version}</version>
|
|
|
|
</dependency>
|
2022-09-13 11:52:49 -04:00
|
|
|
<!-- Spring Data LDAP -->
|
2022-07-06 05:55:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-ldap</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-jpa</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- spring ldap test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
|
<artifactId>spring-ldap-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2024-02-25 16:46:11 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.unboundid</groupId>
|
|
|
|
<artifactId>unboundid-ldapsdk</artifactId>
|
|
|
|
<version>${unboundid-ldapsdk.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2021-05-17 10:52:27 -04:00
|
|
|
<finalName>spring-security-ldap</finalName>
|
2019-10-31 21:43:47 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<apacheds.version>1.5.5</apacheds.version>
|
2024-02-25 16:46:11 -05:00
|
|
|
<start-class>com.baeldung.SampleLDAPApplication</start-class>
|
|
|
|
<unboundid-ldapsdk.version>4.0.10</unboundid-ldapsdk.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-17 10:52:27 -04:00
|
|
|
</project>
|