You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ol...@apache.org on 2008/03/07 01:18:42 UTC

svn commit: r634475 - in /continuum/branches/continuum-1.x: continuum-notifiers/continuum-notifier-wagon/pom.xml continuum-notifiers/continuum-notifier-wagon/src/test/resources/log4j.properties pom.xml

Author: olamy
Date: Thu Mar  6 16:18:40 2008
New Revision: 634475

URL: http://svn.apache.org/viewvc?rev=634475&view=rev
Log:
fix the java.lang.VerifyError with a jvm flag ( weird ! )
but now the unit test in the wagon notifier failed due to an exception in the webdav servlet


Added:
    continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/src/test/resources/log4j.properties   (with props)
Modified:
    continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/pom.xml
    continuum/branches/continuum-1.x/pom.xml

Modified: continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/pom.xml
URL: http://svn.apache.org/viewvc/continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/pom.xml?rev=634475&r1=634474&r2=634475&view=diff
==============================================================================
--- continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/pom.xml (original)
+++ continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/pom.xml Thu Mar  6 16:18:40 2008
@@ -28,6 +28,10 @@
     </dependency>
     <dependency>
       <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-provider-api</artifactId>
+    </dependency>      
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
       <artifactId>wagon-webdav</artifactId>
       <scope>test</scope>
     </dependency>
@@ -46,6 +50,13 @@
   </dependencies>
   <build>
     <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <argLine>-noverify</argLine>
+        </configuration>    
+      </plugin>		
       <plugin>
         <groupId>org.codehaus.plexus</groupId>
         <artifactId>plexus-maven-plugin</artifactId>

Added: continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/src/test/resources/log4j.properties
URL: http://svn.apache.org/viewvc/continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/src/test/resources/log4j.properties?rev=634475&view=auto
==============================================================================
--- continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/src/test/resources/log4j.properties (added)
+++ continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/src/test/resources/log4j.properties Thu Mar  6 16:18:40 2008
@@ -0,0 +1,27 @@
+#
+# 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=INFO, console
+
+# Define the destination and format of our logging
+log4j.appender.console=org.apache.log4j.ConsoleAppender
+log4j.appender.console.layout=org.apache.log4j.PatternLayout
+log4j.appender.console.layout.ConversionPattern=%d{HH:mm:ss,SSS} %-5p [%c] - %m%n
+
+log4j.logger.httpclient.wire=DEBUG

Propchange: continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/src/test/resources/log4j.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/src/test/resources/log4j.properties
------------------------------------------------------------------------------
    svn:executable = *

Propchange: continuum/branches/continuum-1.x/continuum-notifiers/continuum-notifier-wagon/src/test/resources/log4j.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Modified: continuum/branches/continuum-1.x/pom.xml
URL: http://svn.apache.org/viewvc/continuum/branches/continuum-1.x/pom.xml?rev=634475&r1=634474&r2=634475&view=diff
==============================================================================
--- continuum/branches/continuum-1.x/pom.xml (original)
+++ continuum/branches/continuum-1.x/pom.xml Thu Mar  6 16:18:40 2008
@@ -625,8 +625,13 @@
       </dependency>
       <dependency>
         <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-api</artifactId>
+        <version>1.5</version>
+      </dependency>      
+      <dependency>
+        <groupId>org.slf4j</groupId>
         <artifactId>slf4j-log4j12</artifactId>
-        <version>1.2</version>
+        <version>1.5</version>
       </dependency>
       <dependency>
         <groupId>org.codehaus.plexus</groupId>