<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> <parent> <groupId>fr.in2p3.lavoisier</groupId> <artifactId>lavoisier</artifactId> <version>2.1.2-SNAPSHOT</version> </parent> <groupId>fr.in2p3.lavoisier</groupId> <artifactId>lavoisier-interfaces</artifactId> <version>2.1.2-SNAPSHOT</version> <name>Lavoisier Adaptor Interfaces</name> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>javadoc</goal> </goals> </execution> </executions> <configuration> <docletArtifact> <groupId>com.jeldoclet</groupId> <artifactId>jeldoclet</artifactId> <version>1.0</version> </docletArtifact> <doclet>com.jeldoclet.JELDoclet</doclet> <useStandardDocletOptions>false</useStandardDocletOptions> <failOnError>false</failOnError> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>xslt-maven-plugin</artifactId> <version>1.0</version> <configuration> <srcDir>${project.build.directory}</srcDir> <srcIncludes>dependencies.xml</srcIncludes> </configuration> <executions> <execution> <id>generate-contributors-guide-web-page</id> <phase>pre-site</phase> <goals> <goal>transform</goal> </goals> <configuration> <xslFile>src/site/xsl/contributors-guide.xsl</xslFile> <destDir>${project.build.directory}/generated-site/xdoc</destDir> <srcDir>${project.build.directory}/site/apidocs</srcDir> <srcIncludes>jel.xml</srcIncludes> <fileNameRegex>jel.xml</fileNameRegex> <fileNameReplacement>contributors-guide.xml</fileNameReplacement> </configuration> </execution> </executions> </plugin> </plugins> </build> <!-- build dependencies --> <repositories> <repository> <id>IN2P3 maven repository</id> <url>http://maven.in2p3.fr</url> </repository> </repositories> <dependencyManagement> <dependencies> <dependency> <groupId>com.jeldoclet</groupId> <artifactId>jeldoclet</artifactId> <version>1.0</version> </dependency> </dependencies> </dependencyManagement> <!-- runtime dependencies --> <dependencies> <!-- interfaces XPathNodeHandler and ContentAndLexicalHandlers --> <dependency> <groupId>fr.in2p3.lavoisier</groupId> <artifactId>xpath-absolute</artifactId> <version>2.1.2-SNAPSHOT</version> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> <!-- interface Authenticator --> <dependency> <groupId>org.glassfish.grizzly</groupId> <artifactId>grizzly-http-server</artifactId> <version>2.2.21</version> </dependency> </dependencies> </project>