2017-05-12 20:32:54 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 12:34:54 +05:30
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2015-07-23 16:54:23 +03:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-03-06 11:49:59 +02:00
|
|
|
<groupId>com.baeldung</groupId>
|
2015-07-23 16:54:23 +03:00
|
|
|
<artifactId>spring-security-mvc-ldap</artifactId>
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-security-mvc-ldap</name>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<parent>
|
2018-06-08 21:04:03 +03:00
|
|
|
<artifactId>parent-boot-1</artifactId>
|
2017-05-14 18:01:35 +02:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-06-08 21:04:03 +03:00
|
|
|
<relativePath>../parent-boot-1</relativePath>
|
2015-07-23 16:54:23 +03:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- Spring Boot Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<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>
|
2016-01-05 19:55:11 +02:00
|
|
|
<version>${apacheds.version}</version>
|
2015-07-23 16:54:23 +03:00
|
|
|
</dependency>
|
2017-05-12 20:32:54 +02:00
|
|
|
|
2015-07-23 16:54:23 +03:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>spring-security-mvc-ldap</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
2017-05-12 20:32:54 +02:00
|
|
|
<properties>
|
2017-08-05 14:48:10 +02:00
|
|
|
<apacheds.version>1.5.5</apacheds.version>
|
2015-07-23 16:54:23 +03:00
|
|
|
</properties>
|
2014-06-04 16:33:02 +01:00
|
|
|
|
|
|
|
</project>
|