[jira] Commented: (MPIR-150) the dependency report ignores mirrors

2010-12-07 Thread Dominique Jean-Prost (JIRA)

[ 
http://jira.codehaus.org/browse/MPIR-150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=246700#action_246700
 ] 

Dominique Jean-Prost commented on MPIR-150:
---

Well, I think I still meet the same problem.

My settings.xml :
{code:xml}


*
http://vsrigel:7001/archiva/repository/global
everything-mirror



{code}

when I execute "c:\bin\apache-maven-2.2.1\bin\mvn 
project-info-reports:dependencies", the plugin hangs twice and displays :

[WARNING] The repository url 'http://repo1.maven.org/maven2' is invalid - 
Repository 'central' will be blacklisted.
[WARNING] The repository url 'http://svn.apache.org/maven-snapshot-repository' 
is invalid - Repository 'apache.snapshots' will be blacklisted.

I also get tons of 
[DEBUG] Using mirror: http://vsrigel:7001/archiva/repository/global (id: 
everything-mirror)
[DEBUG] Using Wagon implementation lightweight from default mapping for 
protocol http
[DEBUG] Checking for pre-existing User-Agent configuration.
[DEBUG] Adding User-Agent configuration.
http://vsrigel:7001/archiva/repository/global - Session: Opened  
http://vsrigel:7001/archiva/repository/global - Session: Disconnecting  
http://vsrigel:7001/archiva/repository/global - Session: Disconnected

Please find my execution log as an attachment.
Should this bug be reopened ? Or am I wrong ?

Thank you 
Dom

> the dependency report ignores mirrors
> -
>
> Key: MPIR-150
> URL: http://jira.codehaus.org/browse/MPIR-150
> Project: Maven 2.x Project Info Reports Plugin
>  Issue Type: Bug
>  Components: dependencies
>Affects Versions: 2.1.1
>Reporter: Brian Fox
>Assignee: Olivier Lamy
> Fix For: 2.2
>
> Attachments: MPIR-150.patch
>
>
> The dependencies report takes forever and running debug i can see it's 
> hitting the same repos over and over and bypassing my repository manager.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MPIR-150) the dependency report ignores mirrors

2010-07-15 Thread Prashant Bhate (JIRA)

[ 
http://jira.codehaus.org/browse/MPIR-150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=228754#action_228754
 ] 

Prashant  Bhate commented on MPIR-150:
--

Hi,
Raised http://jira.codehaus.org/browse/MPIR-199 

Cheers,
Prashant Bhate

> the dependency report ignores mirrors
> -
>
> Key: MPIR-150
> URL: http://jira.codehaus.org/browse/MPIR-150
> Project: Maven 2.x Project Info Reports Plugin
>  Issue Type: Bug
>  Components: dependencies
>Affects Versions: 2.1.1
>Reporter: Brian Fox
>Assignee: Olivier Lamy
> Fix For: 2.2
>
> Attachments: MPIR-150.patch
>
>
> The dependencies report takes forever and running debug i can see it's 
> hitting the same repos over and over and bypassing my repository manager.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MPIR-150) the dependency report ignores mirrors

2010-07-13 Thread Olivier Lamy (JIRA)

[ 
http://jira.codehaus.org/browse/MPIR-150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=228234#action_228234
 ] 

Olivier Lamy commented on MPIR-150:
---

please open a new issue for this.
Thanks.

> the dependency report ignores mirrors
> -
>
> Key: MPIR-150
> URL: http://jira.codehaus.org/browse/MPIR-150
> Project: Maven 2.x Project Info Reports Plugin
>  Issue Type: Bug
>  Components: dependencies
>Affects Versions: 2.1.1
>Reporter: Brian Fox
>Assignee: Olivier Lamy
> Fix For: 2.2
>
> Attachments: MPIR-150.patch
>
>
> The dependencies report takes forever and running debug i can see it's 
> hitting the same repos over and over and bypassing my repository manager.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MPIR-150) the dependency report ignores mirrors

2010-07-13 Thread Prashant Bhate (JIRA)

[ 
http://jira.codehaus.org/browse/MPIR-150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=228186#action_228186
 ] 

Prashant  Bhate commented on MPIR-150:
--

Thanks a lot for this patch, Now site deployment would be much quicker.

it would be nice if  {{url.openStream();}} 

{code}
InputStream in =null;

try
{
  in = url.openStream();
{code}

can be replaced with 
{code}
//Define constant TIMEOUT with pre set timeout
 
  InputStream in =null;

  try
  {
   URLConnection conn = url.openConnection();
   conn.setConnectTimeout(TIMEOUT);
   conn.setReadTimeout(TIMEOUT);
   in = conn.getInputStream();
{code}

{{url.openStream();}} is a blocking call that makes caller wait forever

> the dependency report ignores mirrors
> -
>
> Key: MPIR-150
> URL: http://jira.codehaus.org/browse/MPIR-150
> Project: Maven 2.x Project Info Reports Plugin
>  Issue Type: Bug
>  Components: dependencies
>Affects Versions: 2.1.1
>Reporter: Brian Fox
>Assignee: Olivier Lamy
> Fix For: 2.2
>
> Attachments: MPIR-150.patch
>
>
> The dependencies report takes forever and running debug i can see it's 
> hitting the same repos over and over and bypassing my repository manager.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MPIR-150) the dependency report ignores mirrors

2009-12-10 Thread Lukas Laag (JIRA)

[ 
http://jira.codehaus.org/browse/MPIR-150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=202076#action_202076
 ] 

Lukas Laag commented on MPIR-150:
-

The workaround consisting in locking down the plugin to version 2.0.1 only 
works only partially for me (works for the "Dependencies" report but no for the 
"Project License" report)

> the dependency report ignores mirrors
> -
>
> Key: MPIR-150
> URL: http://jira.codehaus.org/browse/MPIR-150
> Project: Maven 2.x Project Info Reports Plugin
>  Issue Type: Bug
>  Components: dependencies
>Affects Versions: 2.1.1
>Reporter: Brian Fox
>
> The dependencies report takes forever and running debug i can see it's 
> hitting the same repos over and over and bypassing my repository manager.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MPIR-150) the dependency report ignores mirrors

2009-10-06 Thread Mark Anderson (JIRA)

[ 
http://jira.codehaus.org/browse/MPIR-150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=193783#action_193783
 ] 

Mark Anderson commented on MPIR-150:


We too are experiencing this issue, with Maven 2.2.1 on a new Linux build 
server in our environment.  Our main Linux build server (same configuration as 
far as we can tell) does not experience the issue, nor have we seen the issue 
on Windows developer environments we use.

We have an EAR build that usually takes about 47 seconds to complete on 
unaffected servers.  When affected by this issue, the build time increases to 
nearly 8 minutes.

The site goal starts normally, then we get a 3 minute and 13 second delay on 
one of our modules, followed by (not sure this is related):
{code}
build   06-Oct-2009 14:27:36[WARNING] The repository url 
'https://maven-repository.dev.java.net/nonav/repository' is invalid - 
Repository 'java.net' will be blacklisted.
{code}

and then a LOT of the following messages for dozens of repositories, taking up 
almost another 3 minutes of the site generation for the different modules in 
our EAR build.

{code}
build   06-Oct-2009 14:27:43[DEBUG] Using Wagon implementation lightweight 
from default mapping for protocol http
build   06-Oct-2009 14:27:43[DEBUG] Checking for pre-existing User-Agent 
configuration.
build   06-Oct-2009 14:27:43[DEBUG] Adding User-Agent configuration.
build   06-Oct-2009 14:27:43http://repo1.maven.org/maven2 - Session: Opened 
 
build   06-Oct-2009 14:27:43http://repo1.maven.org/maven2 - Session: 
Disconnecting  
build   06-Oct-2009 14:27:43http://repo1.maven.org/maven2 - Session: 
Disconnected
...
{code}

Manually setting the version of the maven-project-info-reports-plugin to 
version 2.0.1 works around the issue for us too.

Our Maven install is basic with no mirrors or artifactory configurations.  We 
are behind a corporate proxy that is configured in settings.xml.

> the dependency report ignores mirrors
> -
>
> Key: MPIR-150
> URL: http://jira.codehaus.org/browse/MPIR-150
> Project: Maven 2.x Project Info Reports Plugin
>  Issue Type: Bug
>  Components: dependencies
>Affects Versions: 2.1.1
>Reporter: Brian Fox
>
> The dependencies report takes forever and running debug i can see it's 
> hitting the same repos over and over and bypassing my repository manager.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MPIR-150) the dependency report ignores mirrors

2009-07-30 Thread Justin Smith (JIRA)

[ 
http://jira.codehaus.org/browse/MPIR-150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=185427#action_185427
 ] 

Justin Smith commented on MPIR-150:
---

I am getting the same symptoms on 2.2.0 r788681...  Using artifactory on the 
intranet here.

> the dependency report ignores mirrors
> -
>
> Key: MPIR-150
> URL: http://jira.codehaus.org/browse/MPIR-150
> Project: Maven 2.x Project Info Reports Plugin
>  Issue Type: Bug
>  Components: dependencies
>Affects Versions: 2.1.1
>Reporter: Brian Fox
>
> The dependencies report takes forever and running debug i can see it's 
> hitting the same repos over and over and bypassing my repository manager.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MPIR-150) the dependency report ignores mirrors

2009-07-23 Thread Julien HENRY (JIRA)

[ 
http://jira.codehaus.org/browse/MPIR-150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=184735#action_184735
 ] 

Julien HENRY commented on MPIR-150:
---

Is this bug a duplicate of (now resolved) MPIR-160?

> the dependency report ignores mirrors
> -
>
> Key: MPIR-150
> URL: http://jira.codehaus.org/browse/MPIR-150
> Project: Maven 2.x Project Info Reports Plugin
>  Issue Type: Bug
>  Components: dependencies
>Affects Versions: 2.1.1
>Reporter: Brian Fox
>
> The dependencies report takes forever and running debug i can see it's 
> hitting the same repos over and over and bypassing my repository manager.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MPIR-150) the dependency report ignores mirrors

2009-03-31 Thread Julien HENRY (JIRA)

[ 
http://jira.codehaus.org/browse/MPIR-150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=171522#action_171522
 ] 

Julien HENRY commented on MPIR-150:
---

I have the same problem.

I have a corporate archiva mirror for central:
{code}

  central
  central
  Central Mirror
  
http://pic-java-nce.sud.mycompany.fr:8090/archiva/repository/central

{code}

And also 2 additional repos declared in my pom.xml:
{code}
 


mycompany.corporate.release
mycompany Corporate Release Repository

http://pic-java-nce.sud.mycompany.fr:8090/archiva/repository/mycompany.corporate.release

true


false



mycompany.local.release
mycompany Local Release Repository

http://pic-java-nce.sud.mycompany.fr:8090/archiva/repository/release

true


false



{code}

Running:
{code}
mvn 
org.apache.maven.plugins:maven-project-info-reports-plugin:2.1.1:dependencies -X
{code}
Takes 3 minutes 37 seconds with lots of:

{code}
[DEBUG] Checking for pre-existing User-Agent configuration.
[DEBUG] Adding User-Agent configuration.
http://repo1.maven.org/maven/ - Session: Opened
http://repo1.maven.org/maven/ - Session: Disconnecting
http://repo1.maven.org/maven/ - Session: Disconnected
[DEBUG] Checking for pre-existing User-Agent configuration.
[DEBUG] Adding User-Agent configuration.
http://people.apache.org/repo/m2-incubating-repository/ - Session: Opened
http://people.apache.org/repo/m2-incubating-repository/ - Session: Disconnecting
http://people.apache.org/repo/m2-incubating-repository/ - Session: Disconnected
[DEBUG] Checking for pre-existing User-Agent configuration.
[DEBUG] Adding User-Agent configuration.
http://repository.codehaus.org - Session: Opened
http://repository.codehaus.org - Session: Disconnecting
http://repository.codehaus.org - Session: Disconnected
[DEBUG] Checking for pre-existing User-Agent configuration.
[DEBUG] Adding User-Agent configuration.
http://repo1.maven.org/eclipse - Session: Opened
http://repo1.maven.org/eclipse - Session: Disconnecting
http://repo1.maven.org/eclipse - Session: Disconnected
[DEBUG] Checking for pre-existing User-Agent configuration.
[DEBUG] Adding User-Agent configuration.
http://repo1.maven.org/maven2 - Session: Opened
http://repo1.maven.org/maven2 - Session: Disconnecting
http://repo1.maven.org/maven2 - Session: Disconnected
[DEBUG] Checking for pre-existing User-Agent configuration.
[DEBUG] Adding User-Agent configuration.
http://ws.zones.apache.org/repository2 - Session: Opened
http://ws.zones.apache.org/repository2 - Session: Disconnecting
http://ws.zones.apache.org/repository2 - Session: Disconnected
{code}

Very blocking for me because some projects that use a lot of additional 
repositories have their build taking more than 1 hour instead of less than 2 
minutes after disabling dependency report.

The only workaround for my IC platform is to lock down plugin version to 2.0.1.

If you need more debug informations, fell free to ask.

> the dependency report ignores mirrors
> -
>
> Key: MPIR-150
> URL: http://jira.codehaus.org/browse/MPIR-150
> Project: Maven 2.x Project Info Reports Plugin
>  Issue Type: Bug
>  Components: dependencies
>Affects Versions: 2.1.1
>Reporter: Brian Fox
>
> The dependencies report takes forever and running debug i can see it's 
> hitting the same repos over and over and bypassing my repository manager.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MPIR-150) the dependency report ignores mirrors

2009-03-04 Thread Vincent Siveton (JIRA)

[ 
http://jira.codehaus.org/browse/MPIR-150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=167912#action_167912
 ] 

Vincent Siveton commented on MPIR-150:
--

Do you mean an intranet repo or similar?

> the dependency report ignores mirrors
> -
>
> Key: MPIR-150
> URL: http://jira.codehaus.org/browse/MPIR-150
> Project: Maven 2.x Project Info Reports Plugin
>  Issue Type: Bug
>  Components: dependencies
>Affects Versions: 2.1.1
>Reporter: Brian Fox
>
> The dependencies report takes forever and running debug i can see it's 
> hitting the same repos over and over and bypassing my repository manager.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira