<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Licensed to the Apache Software Foundation (ASF) under one ~ or more contributor license agreements. See the NOTICE file ~ distributed with this work for additional information ~ regarding copyright ownership. The ASF licenses this file ~ to you under the Apache License, Version 2.0 (the ~ "License"); you may not use this file except in compliance ~ with the License. You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. --> <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>org.apache.archiva</groupId> <artifactId>archiva-parent</artifactId> <version>11-SNAPSHOT</version> </parent> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback</artifactId> <version>2.2-SNAPSHOT</version> <packaging>pom</packaging> <name>Apache Archiva Redback</name> <url>http://archiva.apache.org/redback/core</url> <inceptionYear>2006</inceptionYear> <issueManagement> <system>Jira</system> <url>http://jira.codehaus.org/browse/REDBACK</url> </issueManagement> <modules> <module>redback-authentication</module> <module>redback-authorization</module> <module>redback-configuration</module> <module>redback-common</module> <module>redback-policy</module> <module>redback-rbac</module> <module>redback-system</module> <module>redback-keys</module> <module>redback-users</module> <module>redback-data-management</module> <module>redback-integrations</module> <module>redback-features</module> </modules> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk/</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk/ </developerConnection> <url>http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/</url> </scm> <distributionManagement> <site> <id>apache.website</id> <url>file://${siteDeployDirectory}</url> </site> </distributionManagement> <properties> <springVersion>3.2.5.RELEASE</springVersion> <slf4jVersion>1.7.5</slf4jVersion> <log4j2Version>2.0-beta9</log4j2Version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <gpg.useagent>true</gpg.useagent> <cxfVersion>2.6.10</cxfVersion> <!-- <redbackTestJdbcUrl>jdbc:derby:memory:users-test;create=true</redbackTestJdbcUrl> <redbackTestJdbcDriver>org.apache.derby.jdbc.EmbeddedDriver</redbackTestJdbcDriver> --> <redbackTestJdbcUrl>jdbc:hsqldb:mem:redback-test</redbackTestJdbcUrl> <redbackTestJdbcDriver>org.hsqldb.jdbcDriver</redbackTestJdbcDriver> <siteDeployDirectory>${user.home}/archiva-sites/redback-core-site-deploy</siteDeployDirectory> <scmPubCheckoutDirectory>${basedir}/.site-content</scmPubCheckoutDirectory> </properties> <repositories> <repository> <id>archiva.snapshots</id> <name>Archiva VM Snapshots Repository</name> <url>https://archiva-repository.apache.org/archiva/repository/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>apache.snapshots</id> <url>https://repository.apache.org/content/groups/snapshots-group</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>apache.snapshots</id> <name>Apache Snapshots</name> <url>https://repository.apache.org/content/groups/snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-configuration</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-system</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-policy</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-common-jdo</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-common-ldap</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-authentication-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-keys-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-keys-tests</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-keys-cached</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-keys-memory</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-keys-jdo</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-authentication-users</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-authentication-ldap</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-authentication-memory</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-authentication-keys</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-authorization-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-users-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-users-jdo</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-users-memory</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-users-configurable</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-users-ldap</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-users-cached</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-users-tests</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-authorization-rbac</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-rbac-model</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-rbac-tests</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-rbac-memory</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-rbac-cached</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-rbac-jdo</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-rbac-role-manager</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-common-test-resources</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-data-management</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-common-integrations</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-integrations-security</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <!-- Plexus --> <!--dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-api</artifactId> <version>1.0-alpha-20</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </exclusion> </exclusions> </dependency--> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-interpolation</artifactId> <version>1.9</version> </dependency> <dependency> <groupId>org.apache.archiva.redback.components.cache</groupId> <artifactId>spring-cache-api</artifactId> <version>2.2-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.archiva.redback.components.cache</groupId> <artifactId>spring-cache-ehcache</artifactId> <version>2.2-SNAPSHOT</version> </dependency> <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> <version>2.7.4</version> </dependency> <dependency> <groupId>org.apache.archiva.redback.components</groupId> <artifactId>expression-evaluator</artifactId> <version>2.0</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.archiva.redback.components.registry</groupId> <artifactId>spring-registry-api</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>org.apache.archiva.redback.components.registry</groupId> <artifactId>spring-registry-commons</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-digest</artifactId> <version>1.1</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-slf4j-logging</artifactId> <version>1.1-alpha-1</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.archiva.redback.components</groupId> <artifactId>spring-jdo2</artifactId> <version>2.1</version> <exclusions> <exclusion> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> </exclusion> <exclusion> <groupId>xerces</groupId> <artifactId>xmlParserAPIs</artifactId> </exclusion> </exclusions> </dependency> <!-- Other --> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <!-- must run at xalan 2.7.0, as ealier versions embed an ancient version of bcel, which iterferes with the ability of jpox/jdo to run --> <version>2.7.0</version> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <!-- Xalan 2.7.0 requires xml-apis version 1.3.02+ --> <version>1.3.03</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> <version>1.8.1</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <!-- commons-configuration requires this version. --> <version>3.2</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.6</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4jVersion}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4jVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4jVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <version>${slf4jVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.2.8</version> <scope>test</scope> </dependency> <!-- spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${springVersion}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${springVersion}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${springVersion}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${springVersion}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>${springVersion}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> <version>${springVersion}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${springVersion}</version> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>jsr250-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-rest-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-rest-services</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>jpox</groupId> <artifactId>jpox</artifactId> <version>1.1.9-1</version> <scope>compile</scope> <exclusions> <!-- targeting JDK 1.4 we don't need this --> <exclusion> <groupId>javax.sql</groupId> <artifactId>jdbc-stdext</artifactId> </exclusion> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> <exclusion> <groupId>javax.resource</groupId> <artifactId>connector</artifactId> </exclusion> <exclusion> <groupId>javax.transaction</groupId> <artifactId>jta</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>jpox</groupId> <artifactId>jpox-ehcache</artifactId> <version>1.1.9</version> <scope>test</scope> <exclusions> <exclusion> <groupId>ehcache</groupId> <artifactId>ehcache</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>13.0.1</version> </dependency> <!-- using apacheds client api rather than com.sun.jndi.ldap issue is apacheds client doesn't getDirContext so this need to rewrite a lot ! <dependency> <groupId>org.apache.directory.shared</groupId> <artifactId>shared-ldap-client-api</artifactId> <version>1.0.0-M7</version> </dependency> --> <dependency> <groupId>org.apache.archiva.redback.components</groupId> <artifactId>spring-apacheds</artifactId> <version>2.0</version> </dependency> <!-- <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4</version> </dependency> --> <dependency> <groupId>javax.xml.stream</groupId> <artifactId>stax-api</artifactId> <version>1.0-2</version> </dependency> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>jsr311-api</artifactId> <version>1.1.1</version> </dependency> <!-- <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-jaxrs</artifactId> <version>${jacksonVersion}</version> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-xc</artifactId> <version>${jacksonVersion}</version> </dependency> --> <dependency> <groupId>com.fasterxml.jackson.jaxrs</groupId> <artifactId>jackson-jaxrs-json-provider</artifactId> <version>${jacksonVersion}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.jaxrs</groupId> <artifactId>jackson-jaxrs-xml-provider</artifactId> <version>${jacksonVersion}</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-bundle-jaxrs</artifactId> <version>${cxfVersion}</version> <exclusions> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.9</version> </dependency> <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <version>1.4</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jpox-maven-plugin</artifactId> <version>1.1.7</version> </plugin> <plugin> <groupId>org.codehaus.modello</groupId> <artifactId>modello-maven-plugin</artifactId> <version>1.7</version> <configuration> <!-- cause issue with datamanagement module --> <useJava5>false</useJava5> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> <configuration> <content>${project.build.directory}/staging</content> <checkinComment>Apache Redback Core site deployment</checkinComment> <tryUpdate>true</tryUpdate> <pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/archiva/site-content/redback/core</pubScmUrl> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.8</version> </plugin> <plugin> <groupId>org.apache.archiva.redback.components.modello</groupId> <artifactId>jpox-modello-maven-plugin</artifactId> <version>1.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Xmx256m -Xms256m</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <useReleaseProfile>false</useReleaseProfile> <goals>deploy</goals> <preparationGoals>clean install</preparationGoals> <arguments>-Prelease</arguments> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <bannedDependencies> <excludes> <exclude>org.codehaus.plexus:plexus-container-default</exclude> <exclude>org.codehaus.plexus:plexus-component-api</exclude> <exclude>org.codehaus.plexus.registry:plexus-registry-api</exclude> <exclude>org.codehaus.plexus.registry:plexus-registry-commons</exclude> <exclude>org.codehaus.plexus.cache:plexus-cache-api</exclude> <exclude>org.codehaus.plexus.cache:plexus-cache-ehcache</exclude> <exclude>org.codehaus.plexus:plexus-log4j-logging</exclude> <exclude>org.codehaus.plexus:plexus-spring</exclude> <exclude>org.codehaus.plexus:plexus-jdo2</exclude> <exclude>org.codehaus.plexus:plexus-apacheds</exclude> <exclude>org.codehaus.plexus:plexus-velocity</exclude> <exclude>net.sf.ehcache:ehcache-core</exclude> <exclude>velocity:velocity</exclude> <exclude>stax:stax-api</exclude> </excludes> </bannedDependencies> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes> <exclude>.gitignore</exclude> <exclude>DEPENDENCIES</exclude> <exclude>README.txt</exclude> <exclude>*.sh</exclude> <exclude>.git/**</exclude> <exclude>build-number.txt</exclude> <!-- IntelliJ IDEA files --> <exclude>.idea/**</exclude> <!-- Eclipse files --> <exclude>.project</exclude> <exclude>.classpath</exclude> <exclude>.settings/**</exclude> <exclude>.site-content/**</exclude> <exclude>.java-version</exclude> </excludes> </configuration> <executions> <execution> <id>rat-check</id> <goals> <goal>check</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>${surefireVersion}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyleVersion}</version> <inherited>false</inherited> <configuration> <configLocation>config/maven_checks.xml</configLocation> <headerLocation>config/maven-header.txt</headerLocation> </configuration> <reportSets> <reportSet> <reports> <report>checkstyle-aggregate</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>${jxrVersion}</version> <inherited>false</inherited> <configuration> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadocPluginVersion}</version> <inherited>false</inherited> <configuration> <javadocVersion>1.6</javadocVersion> <docletArtifact> <groupId>com.google.doclava</groupId> <artifactId>doclava</artifactId> <version>1.0.5</version> </docletArtifact> <doclet>com.google.doclava.Doclava</doclet> <bootclasspath>${sun.boot.class.path}</bootclasspath> <additionalparam> -hdf project.name "${project.name}" -d ${project.build.directory}/site/apidocs </additionalparam> <useStandardDocletOptions>false</useStandardDocletOptions> <additionalJOption>-J-Xmx1024m</additionalJOption> <additionnalDependencies> <additionnalDependency> <groupId>org.jboss.spec.javax.resource</groupId> <artifactId>jboss-connector-api_1.5_spec</artifactId> <version>1.0.0.Final</version> </additionnalDependency> </additionnalDependencies> </configuration> <reportSets> <reportSet> <id>aggregate</id> <reports> <report>aggregate</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>