blob: d7b7103bf2a0fbfc0114c0886491deea993bf44d [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.directory.server</groupId>
<artifactId>build</artifactId>
<version>1.5.0</version>
</parent>
<artifactId>apacheds-bootstrap-plugin</artifactId>
<name>ApacheDS Bootstrap Plugin</name>
<packaging>maven-plugin</packaging>
<description>
This plugin pre-loads a set of schema objects into a special fixed schema
partition within the server. It uses the bootstrap schema objects to do
this at build time. The schema partition files created are then packaged
using the jar plugin to become what is known as the bootstrap partition jar.
</description>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>nlog4j</artifactId>
</dependency>
<dependency>
<groupId>org.apache.directory.server</groupId>
<artifactId>apacheds-jdbm-store</artifactId>
<version>${pom.version}</version>
</dependency>
<dependency>
<groupId>org.apache.directory.server</groupId>
<artifactId>apacheds-constants</artifactId>
<version>${pom.version}</version>
</dependency>
<dependency>
<groupId>org.apache.directory.server</groupId>
<artifactId>apacheds-schema-bootstrap</artifactId>
<version>${pom.version}</version>
</dependency>
<dependency>
<groupId>org.apache.directory.server</groupId>
<artifactId>apacheds-utils</artifactId>
<version>${pom.version}</version>
</dependency>
<!--<dependency>-->
<!--<groupId>org.apache.directory.server</groupId>-->
<!--<artifactId>apacheds-schema-extras</artifactId>-->
<!--<version>${pom.version}</version>-->
<!--</dependency>-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
</plugins>
</build>
</project>