Files
spring-ldap/spring-ldap-article/pom.xml
Mattias Arthursson 69c80dce23 Modified poms, made required dependencies required and removed
unnecessary dependencies.
2007-10-30 18:24:12 +00:00

48 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project>
<parent>
<artifactId>spring-ldap</artifactId>
<groupId>org.springframework.ldap</groupId>
<version>1.2</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.2</version>
<description>
Example code that matches the article published on java.net
on April 18, 2006.
</description>
<dependencies>
<!-- Spring Dependencies -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-ldap</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
<version>2.0.6</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>