Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 12776 invoked from network); 6 Apr 2009 10:09:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 6 Apr 2009 10:09:01 -0000 Received: (qmail 64037 invoked by uid 500); 6 Apr 2009 10:09:00 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 63929 invoked by uid 500); 6 Apr 2009 10:09:00 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 63893 invoked by uid 99); 6 Apr 2009 10:09:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Apr 2009 10:09:00 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Apr 2009 10:08:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DA13B2388A46; Mon, 6 Apr 2009 10:08:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r762268 - /cxf/dosgi/trunk/systests/multi_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/multibundle/MultiBundleDistributionResolver.java Date: Mon, 06 Apr 2009 10:08:35 -0000 To: commits@cxf.apache.org From: davidb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090406100835.DA13B2388A46@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: davidb Date: Mon Apr 6 10:08:35 2009 New Revision: 762268 URL: http://svn.apache.org/viewvc?rev=762268&view=rev Log: Fixed system test failure. Modified: cxf/dosgi/trunk/systests/multi_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/multibundle/MultiBundleDistributionResolver.java Modified: cxf/dosgi/trunk/systests/multi_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/multibundle/MultiBundleDistributionResolver.java URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/systests/multi_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/multibundle/MultiBundleDistributionResolver.java?rev=762268&r1=762267&r2=762268&view=diff ============================================================================== --- cxf/dosgi/trunk/systests/multi_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/multibundle/MultiBundleDistributionResolver.java (original) +++ cxf/dosgi/trunk/systests/multi_bundle_distro/src/test/java/org/apache/cxf/dosgi/systests/multibundle/MultiBundleDistributionResolver.java Mon Apr 6 10:08:35 2009 @@ -35,7 +35,7 @@ // Read the distribution from the distribution/multi-bundle module static File [] getDistribution() throws Exception { File distroRoot = new File(System.getProperty("basedir") + "/../../distribution/multi-bundle"); - File distroFile = new File(distroRoot, "src/main/resources/distro_bundles.xml"); + File distroFile = new File(distroRoot, "target/classes/distro_bundles.xml"); DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder builder = factory.newDocumentBuilder();