Author: rdonkin
Date: Tue Sep 15 12:34:10 2009
New Revision: 815297

URL: http://svn.apache.org/viewvc?rev=815297&view=rev
Log:
JAMES-918 add missing dependency. Smoke tests now pass :-)

Added:
    james/server/trunk/stage/commons-jxpath/
    james/server/trunk/stage/commons-jxpath/jars/
    james/server/trunk/stage/commons-jxpath/jars/commons-jxpath-1.3.jar   (with 
props)
    james/server/trunk/stage/commons-jxpath/pom/
    james/server/trunk/stage/commons-jxpath/pom/commons-jxpath-1.3.pom   (with 
props)
Modified:
    james/server/trunk/phoenix-deployment/build.xml

Modified: james/server/trunk/phoenix-deployment/build.xml
URL: 
http://svn.apache.org/viewvc/james/server/trunk/phoenix-deployment/build.xml?rev=815297&r1=815296&r2=815297&view=diff
==============================================================================
--- james/server/trunk/phoenix-deployment/build.xml (original)
+++ james/server/trunk/phoenix-deployment/build.xml Tue Sep 15 12:34:10 2009
@@ -554,6 +554,7 @@
                        <lib dir="${lib.dir}/${path.lib.javamail}" 
includes="${jarname.javax-mail.jar}" />
                        <lib dir="${lib.dir}/${path.lib.commonsdbcp}" 
includes="${jarname.commons-dbcp.jar}" />
                        <lib dir="${lib.dir}/${path.lib.commonspool}" 
includes="${jarname.commons-pool.jar}" />
+                       <lib dir="${lib.dir}/${path.lib.commonsjxpath}" 
includes="${jarname.commons-jxpath.jar}" />
                        <lib dir="${lib.dir}/${path.lib.excaliburthread}" 
includes="${jarname.excalibur-thread-api.jar}" />
                        <lib dir="${lib.dir}/${path.lib.excaliburthread}" 
includes="${jarname.excalibur-thread-impl.jar}" />
                        <lib dir="${lib.dir}/${path.lib.excaliburpool}" 
includes="${jarname.excalibur-pool-api.jar}" />

Added: james/server/trunk/stage/commons-jxpath/jars/commons-jxpath-1.3.jar
URL: 
http://svn.apache.org/viewvc/james/server/trunk/stage/commons-jxpath/jars/commons-jxpath-1.3.jar?rev=815297&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/server/trunk/stage/commons-jxpath/jars/commons-jxpath-1.3.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/server/trunk/stage/commons-jxpath/pom/commons-jxpath-1.3.pom
URL: 
http://svn.apache.org/viewvc/james/server/trunk/stage/commons-jxpath/pom/commons-jxpath-1.3.pom?rev=815297&view=auto
==============================================================================
--- james/server/trunk/stage/commons-jxpath/pom/commons-jxpath-1.3.pom (added)
+++ james/server/trunk/stage/commons-jxpath/pom/commons-jxpath-1.3.pom Tue Sep 
15 12:34:10 2009
@@ -0,0 +1,270 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+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";>
+  <parent>
+    <groupId>org.apache.commons</groupId>
+    <artifactId>commons-parent</artifactId>
+    <version>11</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>commons-jxpath</groupId>
+  <artifactId>commons-jxpath</artifactId>
+  <name>Commons JXPath</name>
+  <!-- when cutting a release, be sure to modify the commons.release.version 
property,
+    found at /project/properties/commons.release.version in this document -->
+  <version>1.3</version>
+  <description>A Java-based implementation of XPath 1.0 that, in addition to 
XML processing, can inspect/modify Java object graphs (the library's explicit 
purpose) and even mixed Java/XML structures.</description>
+  <url>http://commons.apache.org/jxpath/</url>
+  <issueManagement>
+    <system>jira</system>
+    <url>http://issues.apache.org/jira/browse/JXPATH</url>
+  </issueManagement>
+  <inceptionYear>2001</inceptionYear>
+  <developers>
+    <developer>
+      <id>dmitri</id>
+      <name>Dmitri Plotnikov</name>
+      <email>[email protected]</email>
+      <organization />
+    </developer>
+    <developer>
+      <id>craigmcc</id>
+      <name>Craig McClanahan</name>
+      <email>[email protected]</email>
+      <organization>Sun Microsystems</organization>
+    </developer>
+    <developer>
+      <id>mbenson</id>
+      <name>Matt Benson</name>
+      <email>[email protected]</email>
+    </developer>
+  </developers>
+  <scm>
+    
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/jxpath/trunk</connection>
+    
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/jxpath/trunk</developerConnection>
+    <url>http://svn.apache.org/repos/asf/commons/proper/jxpath/trunk</url>
+  </scm>
+
+  <properties>
+    <commons.componentid>jxpath</commons.componentid>
+    <!-- should agree with project.version for releases: -->
+    <commons.release.version>1.3</commons.release.version>
+    <commons.binary.suffix />
+    <commons.jira.id>JXPATH</commons.jira.id>
+    <commons.jira.pid>12310480</commons.jira.pid>
+  </properties> 
+
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+    <testSourceDirectory>src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>src/test</directory>
+        <includes>
+          <include>**/*.xml</include>
+        </includes>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <includes>
+            <include>**/*Test.java</include>
+          </includes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <descriptors>
+            <descriptor>src/assembly/bin.xml</descriptor>
+            <descriptor>src/assembly/src.xml</descriptor>
+          </descriptors>
+          <tarLongFileMode>gnu</tarLongFileMode>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>1.1.1</version>
+        <scope>runtime</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+  <dependencies>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.4.0</version>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.4</version>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>jsp-api</artifactId>
+      <version>2.0</version>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.04</version>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>jdom</groupId>
+      <artifactId>jdom</artifactId>
+      <version>1.0</version>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+      <version>1.7.0</version>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>com.mockrunner</groupId>
+      <artifactId>mockrunner-jdk1.3-j2ee1.3</artifactId>
+      <version>0.4</version>
+      <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>cglib-nodep</groupId>
+          <artifactId>cglib-nodep</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>jboss</groupId>
+          <artifactId>jboss-jee</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>nekohtml</groupId>
+          <artifactId>nekohtml</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>struts</groupId>
+          <artifactId>struts</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>oro</groupId>
+          <artifactId>oro</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>commons-validator</groupId>
+          <artifactId>commons-validator</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>commons-digester</groupId>
+          <artifactId>commons-digester</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-plugin</artifactId>
+        <version>2.2</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <version>2.1</version>
+        <configuration>
+          <configLocation>${basedir}/checkstyle.xml</configLocation>
+          <excludes>org/apache/commons/jxpath/ri/parser/*</excludes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-pmd-plugin</artifactId>
+        <version>2.3</version>
+        <configuration>
+          <targetJdk>1.3</targetJdk>
+          <excludes>
+            <exclude>org/apache/commons/jxpath/ri/parser/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>findbugs-maven-plugin</artifactId>
+        <version>1.2</version>
+        <configuration>
+          
<excludeFilterFile>conf/findbugs-exclude-filter.xml</excludeFilterFile>
+          <xmlOutput>true</xmlOutput>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.4</version>
+        <configuration>
+          <linksource>true</linksource>
+          <links>
+            <link>http://java.sun.com/j2se/1.3/docs/api/</link>
+            <link>http://java.sun.com/javaee/5/docs/api/</link>
+            <link>http://commons.apache.org/beanutils/apidocs/</link>
+            <link>http://www.jdom.org/docs/apidocs/</link> 
+          </links>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>rat-maven-plugin</artifactId>
+        <version>1.0-alpha-3</version>
+        <configuration>
+          <excludes>
+            <exclude>src/java/org/apache/commons/jxpath/ri/parser/*</exclude>
+            <exclude>src/conf/MANIFEST.MF</exclude>
+            <exclude>xdocs/style/project.css</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+  <distributionManagement>
+    <site>
+      <id>apache.website</id>
+      <name>Default Site</name>
+      <url>scp://people.apache.org/www/commons.apache.org/jxpath/</url>
+    </site>
+  </distributionManagement>
+</project>

Propchange: james/server/trunk/stage/commons-jxpath/pom/commons-jxpath-1.3.pom
------------------------------------------------------------------------------
    svn:eol-style = native



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to