| <?xml version='1.0' encoding='UTF-8'?> |
| <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/maven-v4_0_0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>ldaptive-webapp</artifactId> |
| <packaging>war</packaging> |
| <name>LDAPTIVE WEB APPLICATION</name> |
| <description>Web interface to demonstrate templating functionality</description> |
| <parent> |
| <groupId>org.ldaptive</groupId> |
| <artifactId>ldaptive-parent</artifactId> |
| <version>1.2.3</version> |
| </parent> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.ldaptive</groupId> |
| <artifactId>ldaptive-templates</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>src/main/resources</directory> |
| <filtering>true</filtering> |
| <includes> |
| <include>**/*.xml</include> |
| </includes> |
| </resource> |
| </resources> |
| </build> |
| </project> |