You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by no...@apache.org on 2010/01/05 19:32:58 UTC

svn commit: r896164 - /james/server/sandbox/active/pure_spring_deployment/stage/org.apache.jackrabbit/poms/jackrabbit-1.4.pom

Author: norman
Date: Tue Jan  5 18:32:58 2010
New Revision: 896164

URL: http://svn.apache.org/viewvc?rev=896164&view=rev
Log:
remove missing pom.. hopefully the stage will get removed soon

Added:
    james/server/sandbox/active/pure_spring_deployment/stage/org.apache.jackrabbit/poms/jackrabbit-1.4.pom

Added: james/server/sandbox/active/pure_spring_deployment/stage/org.apache.jackrabbit/poms/jackrabbit-1.4.pom
URL: http://svn.apache.org/viewvc/james/server/sandbox/active/pure_spring_deployment/stage/org.apache.jackrabbit/poms/jackrabbit-1.4.pom?rev=896164&view=auto
==============================================================================
--- james/server/sandbox/active/pure_spring_deployment/stage/org.apache.jackrabbit/poms/jackrabbit-1.4.pom (added)
+++ james/server/sandbox/active/pure_spring_deployment/stage/org.apache.jackrabbit/poms/jackrabbit-1.4.pom Tue Jan  5 18:32:58 2010
@@ -0,0 +1,864 @@
+<?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>
+
+  <!-- ====================================================================== -->
+  <!-- P R O J E C T  D E S C R I P T I O N                                   -->
+  <!-- ====================================================================== -->
+
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>4</version>
+  </parent>
+
+  <groupId>org.apache.jackrabbit</groupId>
+  <artifactId>jackrabbit</artifactId>
+  <name>Apache Jackrabbit</name>
+  <version>1.4</version>
+  <packaging>pom</packaging>
+  <!--
+    Keep the description on a single line. Otherwise Maven might generate
+    a corrupted MANIFEST.MF (see http://jira.codehaus.org/browse/MJAR-4)
+   -->
+  <description>Apache Jackrabbit is a fully conforming implementation of the Content Repository for Java Technology API (JCR). A content repository is a hierarchical content store with support for structured and unstructured content, full text search, versioning, transactions, observation, and more. Typical applications that use content repositories include content management, document management, and records management systems.</description>
+  <url>http://jackrabbit.apache.org/</url>
+  <prerequisites>
+    <maven>2.0</maven>
+  </prerequisites>
+  <issueManagement>
+    <system>Jira</system>
+    <url>http://issues.apache.org/jira/browse/JCR</url>
+  </issueManagement>
+  <inceptionYear>2004</inceptionYear>
+
+  <modules>
+    <module>jackrabbit-api</module>
+    <module>jackrabbit-jcr-commons</module>
+    <module>jackrabbit-jcr-tests</module>
+    <module>jackrabbit-core</module>
+    <module>jackrabbit-text-extractors</module>
+    <module>jackrabbit-jcr-rmi</module>
+    <module>jackrabbit-jcr-servlet</module>
+    <module>jackrabbit-webdav</module>
+    <module>jackrabbit-jcr-server</module>
+    <module>jackrabbit-classloader</module>
+    <module>jackrabbit-webapp</module>
+    <module>jackrabbit-jca</module>
+    <module>jackrabbit-spi</module>
+    <module>jackrabbit-spi-commons</module>
+    <module>jackrabbit-jcr2spi</module>
+    <module>jackrabbit-spi2jcr</module>
+    <!-- TODO: OCM requires Java 5
+    <module>jackrabbit-ocm</module>
+    <module>jackrabbit-ocm-nodemanagement</module>
+    -->
+  </modules>
+
+  <build>
+    <plugins>
+      <!-- Use Java 1.4 everywhere -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <target>1.4</target>
+          <source>1.4</source>
+        </configuration>
+      </plugin>
+      <!-- JCR-704: Enable maven-source-plugin -->
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-sources</id>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <!-- Interoperate with Maven 1 -->
+      <plugin>
+        <artifactId>maven-one-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>install-maven-one-repository</goal>
+            </goals>
+            <phase>install</phase>
+          </execution>
+        </executions>
+      </plugin>
+      <!-- Generate aggregate Javadocs -->
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <source>1.4</source>
+          <aggregate>true</aggregate>
+          <links>
+            <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+            <link>http://www.day.com/maven/jsr170/javadocs/jcr-1.0/</link>
+          </links>
+        </configuration>
+      </plugin>
+      <!-- JCR-988: IDE plugins -->
+      <plugin>
+        <!-- http://maven.apache.org/plugins/maven-idea-plugin/ -->
+        <artifactId>maven-idea-plugin</artifactId>
+        <version>2.0</version>
+        <configuration>
+          <downloadSources>true</downloadSources>
+          <jdkLevel>1.4</jdkLevel>
+        </configuration>
+      </plugin>
+      <plugin>
+        <!-- http://maven.apache.org/plugins/maven-eclipse-plugin/ -->
+        <artifactId>maven-eclipse-plugin</artifactId>
+        <configuration>
+          <downloadSources>true</downloadSources>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <!-- JCR-661: The antrun tools.jar dependency is not needed on macs -->
+    <profile>
+      <id>non-mac</id>
+      <activation>
+        <os>
+          <family>!mac</family>
+        </os>
+      </activation>
+      <!-- NOTE: If you modify the <build> section below, you MUST also -->
+      <!-- update the version specified below for the "mac" profile.    -->
+      <!-- The only difference between the profiles should be the       -->
+      <!-- <dependencies> section.                                      -->
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+              <!-- Include the project metadata files in META-INF -->
+              <execution>
+                <id>add-project-files</id>
+                <phase>process-resources</phase>
+                <configuration>
+                  <tasks>
+                    <copy todir="${project.build.outputDirectory}/META-INF">
+                      <fileset dir="${basedir}">
+                        <include name="README.txt"/>
+                        <include name="NOTICE.txt"/>
+                        <include name="LICENSE.txt"/>
+                      </fileset>
+                    </copy>
+                  </tasks>
+                </configuration>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+              </execution>
+            </executions>
+            <dependencies>
+              <!-- JCR-661: Plugin dependencies are inherited -->
+              <dependency>
+                <groupId>sun</groupId>
+                <artifactId>tools</artifactId>
+                <version>1.0</version>
+                <scope>system</scope>
+                <systemPath>${java.home}/../lib/tools.jar</systemPath>
+              </dependency>
+            </dependencies>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
+      <id>mac</id>
+      <activation>
+        <os>
+          <family>mac</family>
+        </os>
+      </activation>
+      <!-- NOTE: The <build> section below MUST be identical to the one -->
+      <!-- specified above for the "non-mac" profile, except for the    -->
+      <!-- missing tools.jar dependency.                                -->
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>add-project-files</id>
+                <phase>process-resources</phase>
+                <configuration>
+                  <tasks>
+                    <copy todir="${project.build.outputDirectory}/META-INF">
+                      <fileset dir="${basedir}">
+                        <include name="README.txt"/>
+                        <include name="NOTICE.txt"/>
+                        <include name="LICENSE.txt"/>
+                      </fileset>
+                    </copy>
+                  </tasks>
+                </configuration>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
+  <!-- ====================================================================== -->
+  <!-- M A I L I N G   L I S T S                                              -->
+  <!-- ====================================================================== -->
+  <mailingLists>
+    <mailingList>
+      <name>Jackrabbit Announce List</name>
+      <subscribe>announce-subscribe@jackrabbit.apache.org</subscribe>
+      <unsubscribe>announce-unsubscribe@jackrabbit.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-announce/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Jackrabbit Users List</name>
+      <subscribe>users-subscribe@jackrabbit.apache.org</subscribe>
+      <unsubscribe>users-unsubscribe@jackrabbit.apache.org</unsubscribe>
+      <post>users at jackrabbit.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-users/</archive>
+      <otherArchives>
+        <otherArchive>
+          http://dir.gmane.org/gmane.comp.apache.jackrabbit.user
+        </otherArchive>
+        <otherArchive>
+          http://www.mail-archive.com/users@jackrabbit.apache.org/
+        </otherArchive>
+        <otherArchive>
+          http://www.nabble.com/Jackrabbit---Users-f14897.html
+        </otherArchive>
+      </otherArchives>
+    </mailingList>
+    <mailingList>
+      <name>Jackrabbit Development List</name>
+      <subscribe>dev-subscribe@jackrabbit.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@jackrabbit.apache.org</unsubscribe>
+      <post>dev at jackrabbit.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-dev/</archive>
+      <otherArchives>
+        <otherArchive>
+          http://dir.gmane.org/gmane.comp.apache.jackrabbit.devel
+        </otherArchive>
+        <otherArchive>
+          http://www.mail-archive.com/dev@jackrabbit.apache.org/
+        </otherArchive>
+        <otherArchive>
+          http://www.mail-archive.com/jackrabbit-dev@incubator.apache.org/
+        </otherArchive>
+        <otherArchive>
+          http://www.nabble.com/Jackrabbit---Dev-f371.html
+        </otherArchive>
+      </otherArchives>
+    </mailingList>
+    <mailingList>
+      <name>Jackrabbit Source Control List</name>
+      <subscribe>commits-subscribe@jackrabbit.apache.org</subscribe>
+      <unsubscribe>commits-unsubscribe@jackrabbit.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-commits/</archive>
+    </mailingList>
+  </mailingLists>
+
+  <!-- ====================================================================== -->
+  <!-- P E O P L E                                                            -->
+  <!-- ====================================================================== -->
+  <developers>
+    <developer>
+      <name>Roy T. Fielding</name>
+      <id>fielding</id>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Documentation</role>
+      </roles>
+      <timezone>-8</timezone>
+    </developer>
+    <developer>
+      <name>Stefan Guggisberg</name>
+      <id>stefan</id>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Serge Huber</name>
+      <id>shuber</id>
+      <email/>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Christophe Lombart</name>
+      <id>clombart</id>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Stefano Mazzocchi</name>
+      <id>stefano</id>
+      <email/>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>-5</timezone>
+    </developer>
+    <developer>
+      <name>Felix Meschberger</name>
+      <id>fmeschbe</id>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Brian Moseley</name>
+      <id>moseley</id>
+      <email>bcm@osafoundation.org</email>
+      <organization>
+        Open Source Applications Foundation (OSAF)
+      </organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>-8</timezone>
+    </developer>
+    <developer>
+      <name>David Nuescheler</name>
+      <id>uncled</id>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Dominique Pfister</name>
+      <id>dpfister</id>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Peeter Piegaze</name>
+      <id>ppiegaze</id>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Gianugo Rabellino</name>
+      <id>gianugo</id>
+      <email/>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Tim Reilly</name>
+      <id>treilly</id>
+      <email>treilly at apache dot org</email>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>-5</timezone>
+    </developer>
+    <developer>
+      <name>Marcel Reutegger</name>
+      <id>mreutegg</id>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Paul Russell</name>
+      <id>prussell</id>
+      <email></email>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+0</timezone>
+    </developer>
+    <developer>
+      <name>Andrew Savory</name>
+      <id>asavory</id>
+      <email/>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+0</timezone>
+    </developer>
+    <developer>
+      <name>Angela Schreiber</name>
+      <id>angela</id>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Tobias Bocanegra</name>
+      <id>tripod</id>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Sylvain Wallez</name>
+      <id>sylvain</id>
+      <email/>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Jukka Zitting</name>
+      <id>jukka</id>
+      <email>jukka.zitting@gmail.com</email>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Chair</role>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+2</timezone>
+    </developer>
+    <developer>
+      <name>Edgar Poce</name>
+      <id>edgarpoce</id>
+      <email>edgarpoce@gmail.com</email>
+      <organization/>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone/>
+    </developer>
+    <developer>
+      <name>Julian Reschke</name>
+      <id>reschke</id>
+      <email>julian.reschke@greenbytes.de</email>
+      <organization>greenbytes GmbH</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <name>Przemo Pakulski</name>
+      <id>ppakulski</id>
+      <organization>Cognifide</organization>
+      <organizationUrl>http://www.cognifide.com/</organizationUrl>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+  </developers>
+
+  <contributors>
+    <contributor>
+      <name>Lydia Balazs</name>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Unit Tests</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Guillaume Bort</name>
+      <email>guillaume.bort@zenexity.fr</email>
+      <organization>zenexity.fr</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Norbert Braeker</name>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Unit Tests</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Philipp Koch</name>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>TCK Webapp</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Martin Perez</name>
+      <email>mpermar@gmail.com</email>
+      <roles>
+        <role>Text Filters</role>
+      </roles>
+    </contributor>
+    <contributor>
+      <name>Mike Pfaff</name>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Unit Tests</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Sten Roger Sandvik</name>
+      <email>srs@x3m.com</email>
+      <organization>x3m.com</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Vinzenz Wyser</name>
+      <email/>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Unit Tests</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Sandro Boehme</name>
+      <email>sandro.boehme@gmx.de</email>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Paul Bloch</name>
+      <email>openartist@gmail.com</email>
+      <roles>
+        <role>Apache &amp;amp; Built By Logo design</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Michael Eppelheimer</name>
+      <organization>Day Software</organization>
+      <roles>
+        <role>Graphic Designer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Nicolas Toper</name>
+      <organization>Google Summer of Code 2006</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Christoph Kiehl</name>
+      <email>christoph@sulu3000.de</email>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Paco Avila</name>
+      <email>monkiki@gmail.com</email>
+      <organization>GIT Consultors</organization>
+      <organizationUrl>http://www.git.es/</organizationUrl>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Jan Kuzniak</name>
+      <organization>Cognifide</organization>
+      <organizationUrl>http://www.cognifide.com/</organizationUrl>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Jaka Jaksic</name>
+      <timezone>+1</timezone>
+    </contributor>
+    <contributor>
+      <name>Xiaohua Lu</name>
+      <timezone>-5</timezone>
+    </contributor>
+  </contributors>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/jackrabbit/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jackrabbit/trunk</developerConnection>
+    <url>http://svn.apache.org/viewvc/jackrabbit/trunk</url>
+  </scm>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>javax.jcr</groupId>
+        <artifactId>jcr</artifactId>
+        <version>1.0</version>
+        <scope>provided</scope>
+      </dependency>
+      <dependency>
+        <groupId>concurrent</groupId>
+        <artifactId>concurrent</artifactId>
+        <version>1.3.4</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-collections</groupId>
+        <artifactId>commons-collections</artifactId>
+        <version>3.1</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-digester</groupId>
+        <artifactId>commons-digester</artifactId>
+        <version>1.7</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-lang</groupId>
+        <artifactId>commons-lang</artifactId>
+        <version>2.1</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-beanutils</groupId>
+        <artifactId>commons-beanutils</artifactId>
+        <version>1.7.0</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.geronimo.specs</groupId>
+        <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
+        <version>1.0.1</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-api</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-jcr-commons</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-text-extractors</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-jcr-rmi</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-core</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-jcr-tests</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-webdav</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-jcr-servlet</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-jcr-server</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-spi</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-spi-commons</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-jcr2spi</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-spi2jcr</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-ocm</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-ocm-nodemanagement</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-api</artifactId>
+        <version>1.3.0</version>
+      </dependency>
+      <dependency>
+        <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-log4j12</artifactId>
+        <version>1.3.0</version>
+      </dependency>
+      <dependency>
+        <groupId>org.slf4j</groupId>
+        <artifactId>jcl104-over-slf4j</artifactId>
+        <version>1.3.0</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-httpclient</groupId>
+        <artifactId>commons-httpclient</artifactId>
+        <version>3.0</version>
+        <!-- JCR-683: Exclude bad transitive dependencies -->
+        <exclusions>
+          <exclusion>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.lucene</groupId>
+        <artifactId>lucene-core</artifactId>
+        <version>2.2.0</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.derby</groupId>
+        <artifactId>derby</artifactId>
+        <version>10.2.1.6</version>
+      </dependency>
+      <dependency>
+        <groupId>poi</groupId>
+        <artifactId>poi</artifactId>
+        <version>2.5.1-final-20040804</version>
+      </dependency>
+      <dependency>
+        <groupId>pdfbox</groupId>
+        <artifactId>pdfbox</artifactId>
+        <version>0.6.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.textmining</groupId>
+        <artifactId>tm-extractors</artifactId>
+        <version>0.4</version>
+      </dependency>
+      <dependency>
+        <groupId>nekohtml</groupId>
+        <artifactId>nekohtml</artifactId>
+        <version>0.9.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.geronimo.specs</groupId>
+        <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
+        <version>1.0</version>
+      </dependency>
+      <dependency>
+        <groupId>javax.servlet</groupId>
+        <artifactId>servlet-api</artifactId>
+        <version>2.3</version>
+        <scope>provided</scope>
+      </dependency>
+      <dependency>
+        <groupId>xerces</groupId>
+        <artifactId>xercesImpl</artifactId>
+        <version>2.8.1</version>
+      </dependency>
+      <dependency>
+        <groupId>cglib</groupId>
+        <artifactId>cglib</artifactId>
+        <version>2.1_3</version>
+      </dependency>
+      <dependency>
+        <groupId>easymock</groupId>
+        <artifactId>easymock</artifactId>
+        <version>1.1</version>
+      </dependency>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>3.8.1</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+</project>



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org