You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by James CE Johnson <jc...@tragus.org> on 2003/04/16 21:40:40 UTC

site goal doing a web fetch?

Heya,

I am unfortunate enough to live behind an authenticating corpoprate proxy.
*Something during the 'site' goal is attempting to do a web fetch and its
not paying attention to my proxy settings:

Setting project: My Project
java.net.NoRouteToHostException: No route to host
Received: [404] for http://www.thecortex.net/clover
java.net.NoRouteToHostException: No route to host
Received: [404] for http://www.thecortex.net/clover?v=1.0
java.net.NoRouteToHostException: No route to host
Received: [404] for http://jakarta.apache.org/turbine/maven

My build will eventually succeed but not after numerous lengthy timeouts
on these fetches.

Any ideas?

Thanks,
J


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: site goal doing a web fetch?

Posted by Alexei Barantsev <ba...@kazbek.ispras.ru>.
It is linkcheck plugin messages.

The plugin should use maven proxy settings - variables maven.proxy.host,
maven.proxy.port, maven.proxy.username, maven.proxy.password
If it ignores these setting file a bug in jira.

-- 
Alexei Barantsev, ISP RAS
E-mail: barancev@kazbek.ispras.ru
ICQ   : 3959207


  > -----Original Message-----
  > From: James CE Johnson [mailto:jcej@tragus.org] 
  > Sent: Wednesday, April 16, 2003 11:41 PM
  > To: users@maven.apache.org
  > Subject: site goal doing a web fetch?
  > 
  > 
  > 
  > Heya,
  > 
  > I am unfortunate enough to live behind an authenticating 
  > corpoprate proxy. *Something during the 'site' goal is 
  > attempting to do a web fetch and its not paying attention 
  > to my proxy settings:
  > 
  > Setting project: My Project
  > java.net.NoRouteToHostException: No route to host
  > Received: [404] for http://www.thecortex.net/clover
  > java.net.NoRouteToHostException: No route to host
  > Received: [404] for http://www.thecortex.net/clover?v=1.0
  > java.net.NoRouteToHostException: No route to host
  > Received: [404] for http://jakarta.apache.org/turbine/maven
  > 
  > My build will eventually succeed but not after numerous 
  > lengthy timeouts on these fetches.
  > 
  > Any ideas?
  > 
  > Thanks,
  > J
  > 
  > 
  > ------------------------------------------------------------
  > ---------
  > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
  > For additional commands, e-mail: users-help@maven.apache.org
  > 
  > 




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: site goal doing a web fetch?

Posted by Jean-François El Fouly <je...@wanadoo.fr>.
A 15:40 16/04/2003 -0400, vous avez écrit :

>Heya,
>
>I am unfortunate enough to live behind an authenticating corpoprate proxy.
>*Something during the 'site' goal is attempting to do a web fetch and its
>not paying attention to my proxy settings:
>
>Setting project: My Project
>java.net.NoRouteToHostException: No route to host
>Received: [404] for http://www.thecortex.net/clover
>java.net.NoRouteToHostException: No route to host
>Received: [404] for http://www.thecortex.net/clover?v=1.0
>java.net.NoRouteToHostException: No route to host
>Received: [404] for http://jakarta.apache.org/turbine/maven
>
>My build will eventually succeed but not after numerous lengthy timeouts
>on these fetches.
>
>Any ideas?
>
>Thanks,
>J

I guess it's the execution of the linkcheck plugin.
Unless something has been fixed in the last few weeks, the only way I've 
been told to prevent its execution is to add a list of reports to the POM :

   <reports>
     <report>maven-jdepend-plugin</report>
     <report>maven-checkstyle-plugin</report>
     <report>maven-changelog-plugin</report>
     <report>maven-file-activity-plugin</report>
     <report>maven-developer-activity-plugin</report>
     <report>maven-javadoc-plugin</report>
     <report>maven-jxr-plugin</report>
     <report>maven-junit-report-plugin</report>
     <report>maven-tasklist-plugin</report>
     <report>maven-jellydoc-plugin</report>
   </reports>

Cheers,

Jean-François El Fouly



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org