I modify all files that reference HttpUtils for support the new API
I modify docs

Emmanuel

 
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif

Index: Maven.java
===================================================================
RCS file: 
/home/cvspublic/jakarta-turbine-maven/src/java/org/apache/maven/app/Maven.java,v
retrieving revision 1.60
diff -r1.60 Maven.java
1348a1349,1350
>             verifier.setProxyUserName(getProperty("maven.proxy.username"));
>             verifier.setProxyPassword(getProperty("maven.proxy.password"));
Index: ProjectVerifier.java
===================================================================
RCS file: 
/home/cvspublic/jakarta-turbine-maven/src/java/org/apache/maven/ProjectVerifier.java,v
retrieving revision 1.14
diff -r1.14 ProjectVerifier.java
130a131,150
>     
>     /**
>      * Proxy host
>      */
>     private String proxyHost;
>     
>     /**
>      * Proxy port
>      */
>     private String proxyPort;
> 
>     /**
>      * Proxy userName
>      */
>     private String proxyUserName;
>     
>     /**
>      * Proxy password
>      */
>     private String proxyPassword;
153,154c173
<         System.getProperties().put("proxySet", "true");
<         System.getProperties().put("proxyHost", proxyHost);
---
>         this.proxyHost = proxyHost;
163,164c182,200
<         System.getProperties().put("proxySet", "true");
<         System.getProperties().put("proxyPort", proxyPort);
---
>         this.proxyPort = proxyPort;
>     }
> 
>     /**
>      * Sets the proxyUserName attribute.
>      * @param proxyUserName the value to set
>      */
>     public void setProxyUserName(String proxyUserName)
>     {
>         this.proxyUserName = proxyUserName;
>     }
> 
>     /**
>      * Sets the proxyPassword attribute.
>      * @param proxyPassword the value to set
>      */
>     public void setProxyPassword(String proxyPassword)
>     {
>         this.proxyPassword = proxyPassword;
370,371c406,407
<                                             ignoreErrors, useTimestamp, 
<                                             "", "");
---
>                                             ignoreErrors, useTimestamp, "", "",
>                                             proxyHost, proxyPort, proxyUserName, 
>proxyPassword);
Index: properties.xml
===================================================================
RCS file: /home/cvspublic/jakarta-turbine-maven/xdocs/ref/properties.xml,v
retrieving revision 1.22
diff -r1.22 properties.xml
173a174,191
>         <tr>
>           <td>maven.proxy.username</td>
>           <td>Yes</td>
>           <td>
>             Specifies a proxy username for proxy authentication.  Used
>             by the <a 
>href="build-file.html#maven:verify-project">maven:verify-project</a>
>             target.
>           </td>
>         </tr>
>         <tr>
>           <td>maven.proxy.password</td>
>           <td>Yes</td>
>           <td>
>             Specifies a proxy password for proxy authentication.  Used
>             by the <a 
>href="build-file.html#maven:verify-project">maven:verify-project</a>
>             target.
>           </td>
>         </tr>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to