You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ni...@apache.org on 2006/10/13 12:02:33 UTC

svn commit: r463617 - in /incubator/cxf/trunk/systests: pom.xml src/test/resources/log4j.properties

Author: ningjiang
Date: Fri Oct 13 03:02:32 2006
New Revision: 463617

URL: http://svn.apache.org/viewvc?view=rev&rev=463617
Log:
Changed JBoss's JCA API jar reference to geronimo's, Added log4j.properties to avoid spring wraning message

Added:
    incubator/cxf/trunk/systests/src/test/resources/log4j.properties   (with props)
Modified:
    incubator/cxf/trunk/systests/pom.xml

Modified: incubator/cxf/trunk/systests/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/pom.xml?view=diff&rev=463617&r1=463616&r2=463617
==============================================================================
--- incubator/cxf/trunk/systests/pom.xml (original)
+++ incubator/cxf/trunk/systests/pom.xml Fri Oct 13 03:02:32 2006
@@ -150,30 +150,10 @@
             <artifactId>easymockclassextension</artifactId>
             <scope>test</scope>
         </dependency>
-
-        <dependency>
-            <groupId>jboss</groupId>
-            <artifactId>jboss-common</artifactId>
-            <version>4.0.2</version>            
-            <optional>true</optional>
-            <exclusions>
-                <exclusion>
-                    <groupId>xerces</groupId>
-                    <artifactId>xercesImpl</artifactId>
-                </exclusion>
-	    </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>jboss</groupId>
-            <artifactId>jboss-j2ee</artifactId>
-            <version>4.0.2</version>
-            <optional>true</optional>            
-            <exclusions>
-                <exclusion>
-                    <groupId>xerces</groupId>
-                    <artifactId>xercesImpl</artifactId>
-                </exclusion>
-            </exclusions>
+         <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
+            <version>1.0.1</version>            
         </dependency>
         
     </dependencies>

Added: incubator/cxf/trunk/systests/src/test/resources/log4j.properties
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/resources/log4j.properties?view=auto&rev=463617
==============================================================================
--- incubator/cxf/trunk/systests/src/test/resources/log4j.properties (added)
+++ incubator/cxf/trunk/systests/src/test/resources/log4j.properties Fri Oct 13 03:02:32 2006
@@ -0,0 +1,33 @@
+#
+#
+#    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.
+#
+#
+log4j.rootLogger=ERROR, A1
+log4j.appender.A1=org.apache.log4j.ConsoleAppender
+log4j.appender.A1.layout=org.apache.log4j.PatternLayout
+log4j.appender.A1.target=System.err
+
+log4j.category.org.mortbay=WARN
+
+
+# Print the date in ISO 8601 format
+log4j.appender.A1.layout.ConversionPattern=%d [%t] %-5p %c - %m%n
+
+
+

Propchange: incubator/cxf/trunk/systests/src/test/resources/log4j.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/systests/src/test/resources/log4j.properties
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/cxf/trunk/systests/src/test/resources/log4j.properties
------------------------------------------------------------------------------
    svn:mime-type = text/plain