85 lines
2.5 KiB
XML
85 lines
2.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project>
|
|
<parent>
|
|
<artifactId>spring-ldap</artifactId>
|
|
<groupId>org.springframework.ldap</groupId>
|
|
<version>1.1.1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-ldap-person-article</artifactId>
|
|
<name>Spring LDAP Article Source Code Sample</name>
|
|
<version>1.1.1-SNAPSHOT</version>
|
|
<description>
|
|
Example code that matches the article published on java.net
|
|
on April 18, 2006.
|
|
</description>
|
|
|
|
<dependencies>
|
|
<!-- External Dependencies -->
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-collections</groupId>
|
|
<artifactId>commons-collections</artifactId>
|
|
<version>3.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.4</version>
|
|
</dependency>
|
|
<!-- Spring Dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-ldap</artifactId>
|
|
<version>1.1.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-webmvc</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jdbc</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-remoting</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-support</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<!-- Test Dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-mock</artifactId>
|
|
<version>2.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<testSourceDirectory>src/itest/java</testSourceDirectory>
|
|
<testResources>
|
|
<testResource>
|
|
<directory>src/itest/java</directory>
|
|
</testResource>
|
|
</testResources>
|
|
</build>
|
|
</project>
|