Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 86703 invoked from network); 8 Apr 2008 19:28:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Apr 2008 19:28:24 -0000 Received: (qmail 38555 invoked by uid 500); 8 Apr 2008 19:28:24 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 38508 invoked by uid 500); 8 Apr 2008 19:28:24 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 38498 invoked by uid 99); 8 Apr 2008 19:28:24 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Apr 2008 12:28:24 -0700 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.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Apr 2008 19:27:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A711C1A9832; Tue, 8 Apr 2008 12:28:00 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r646043 - in /incubator/cxf/trunk: parent/pom.xml testutils/src/main/java/org/apache/cxf/testutil/common/ServerLauncher.java Date: Tue, 08 Apr 2008 19:27:59 -0000 To: cxf-commits@incubator.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080408192800.A711C1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Tue Apr 8 12:27:59 2008 New Revision: 646043 URL: http://svn.apache.org/viewvc?rev=646043&view=rev Log: Make sure surefire and the forked servers are set for headless to prevent build failures on the headless machines. Modified: incubator/cxf/trunk/parent/pom.xml incubator/cxf/trunk/testutils/src/main/java/org/apache/cxf/testutil/common/ServerLauncher.java Modified: incubator/cxf/trunk/parent/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/parent/pom.xml?rev=646043&r1=646042&r2=646043&view=diff ============================================================================== --- incubator/cxf/trunk/parent/pom.xml (original) +++ incubator/cxf/trunk/parent/pom.xml Tue Apr 8 12:27:59 2008 @@ -255,6 +255,10 @@ -ea + java.awt.headless + true + + java.util.logging.config.file ${basedir}/target/test-classes/logging.properties Modified: incubator/cxf/trunk/testutils/src/main/java/org/apache/cxf/testutil/common/ServerLauncher.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/testutils/src/main/java/org/apache/cxf/testutil/common/ServerLauncher.java?rev=646043&r1=646042&r2=646043&view=diff ============================================================================== --- incubator/cxf/trunk/testutils/src/main/java/org/apache/cxf/testutil/common/ServerLauncher.java (original) +++ incubator/cxf/trunk/testutils/src/main/java/org/apache/cxf/testutil/common/ServerLauncher.java Tue Apr 8 12:27:59 2008 @@ -328,7 +328,7 @@ cmd.add("-D" + entry.getKey() + "=" + entry.getValue()); } } - + cmd.add("-Djava.awt.headless=true"); cmd.add("-ea"); cmd.add("-Djavax.xml.ws.spi.Provider=org.apache.cxf.bus.jaxws.spi.ProviderImpl");