Author: olamy Date: Wed Sep 2 07:51:15 2009 New Revision: 810397 URL: http://svn.apache.org/viewvc?rev=810397&view=rev Log: restore backward compat (for project-info-reports:dependencies)
Added: maven/components/trunk/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java (with props) Added: maven/components/trunk/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java?rev=810397&view=auto ============================================================================== --- maven/components/trunk/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java (added) +++ maven/components/trunk/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java Wed Sep 2 07:51:15 2009 @@ -0,0 +1,38 @@ +package org.apache.maven.artifact.manager; + +/* + * 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. + */ + +/** + * @author Olivier Lamy + */ +...@deprecated +public class WagonConfigurationException + extends org.apache.maven.repository.legacy.WagonConfigurationException +{ + public WagonConfigurationException( String repositoryId, String message, Throwable cause ) + { + super( repositoryId, message, cause ); + } + + public WagonConfigurationException( String repositoryId, String message ) + { + super( repositoryId, message ); + } +} Propchange: maven/components/trunk/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/components/trunk/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision