~ubuntu-branches/debian/sid/wagon2/sid

« back to all changes in this revision

Viewing changes to wagon-providers/wagon-http-lightweight/src/test/java/org/apache/maven/wagon/providers/http/LightweightHttpWagonTest.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2013-05-16 01:37:59 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130516013759-y1ex2xsoghuton6h
Tags: 2.4-1
* New upstream release
  - Removed the patch for CVE-2013-0253 fixed in version 2.4
  - Refreshed the patches
  - Added the required build dependency on libplexus-component-metadata-java
  - Added Maven rules to ignore bnd and plexus-maven-plugin
  - Added a patch to fix a type cast issue in ScmWagon.java
* Fix the watch file to report the most recent versions
* Use the upstream tarball instead of a svn tag to fetch the orig source
* debian/copyright: Fixed a typo in the Format URI

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
/**
31
31
 * @author <a href="michal.maczka@dimatics.com">Michal Maczka</a>
32
 
 * @version $Id: LightweightHttpWagonTest.java 1172877 2011-09-19 22:52:18Z olamy $
 
32
 *
33
33
 */
34
34
public class LightweightHttpWagonTest
35
35
    extends HttpWagonTestCase
51
51
    }
52
52
 
53
53
    @Override
54
 
    protected boolean supportPreemptiveAuthentication()
 
54
    protected boolean supportPreemptiveAuthenticationGet()
 
55
    {
 
56
        return false;
 
57
    }
 
58
 
 
59
 
 
60
    @Override
 
61
    protected boolean supportPreemptiveAuthenticationPut()
 
62
    {
 
63
        return false;
 
64
    }
 
65
 
 
66
    @Override
 
67
    protected boolean supportProxyPreemptiveAuthentication()
55
68
    {
56
69
        return false;
57
70
    }