2017-05-12 14:32:54 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 03:04:54 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2015-07-23 09:54:23 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-03-06 04:49:59 -05:00
|
|
|
<groupId>com.baeldung</groupId>
|
2015-07-23 09:54:23 -04: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 14:04:03 -04:00
|
|
|
<artifactId>parent-boot-1</artifactId>
|
2017-05-14 12:01:35 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-06-08 14:04:03 -04:00
|
|
|
<relativePath>../parent-boot-1</relativePath>
|
2015-07-23 09:54:23 -04: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 12:55:11 -05:00
|
|
|
<version>${apacheds.version}</version>
|
2015-07-23 09:54:23 -04:00
|
|
|
</dependency>
|
2017-05-12 14:32:54 -04:00
|
|
|
|
2015-07-23 09:54:23 -04: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 14:32:54 -04:00
|
|
|
<properties>
|
2017-08-05 08:48:10 -04:00
|
|
|
<apacheds.version>1.5.5</apacheds.version>
|
2015-07-23 09:54:23 -04:00
|
|
|
</properties>
|
2014-06-04 11:33:02 -04:00
|
|
|
|
|
|
|
</project>
|