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

« back to all changes in this revision

Viewing changes to wagon-providers/wagon-http-shared/src/main/java/org/apache/maven/wagon/shared/http/EncodingUtil.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2015-09-02 23:46:43 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20150902234643-byu832r11djlzjbs
Tags: 2.9-1
* Team upload.
* New upstream release
  - Refreshed the patches
* Removed the build dependency on libmaven-enforcer-plugin-java
* No longer build and install the unused wagon-scm and wagon-ssh modules
  to reduce the dependencies of libwagon2-java.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package org.apache.maven.wagon.shared.http;
2
2
 
3
 
import org.apache.commons.lang.StringUtils;
4
 
 
5
 
import java.net.MalformedURLException;
6
 
import java.net.URI;
7
 
import java.net.URISyntaxException;
8
 
import java.net.URL;
9
 
 
10
3
/*
11
4
 * Licensed to the Apache Software Foundation (ASF) under one
12
5
 * or more contributor license agreements.  See the NOTICE file
26
19
 * under the License.
27
20
 */
28
21
 
 
22
import org.apache.commons.lang.StringUtils;
 
23
 
 
24
import java.net.MalformedURLException;
 
25
import java.net.URI;
 
26
import java.net.URISyntaxException;
 
27
import java.net.URL;
 
28
 
29
29
/**
30
30
 * Encoding utility.
31
31
 *