Problems downloading dependencies in 1.0.1

2004-11-18 Thread Adrian Tarau
Hi,
 
I'm using Maven 1.0 and I want to switch to release 1.0.1 but I have some 
problems with some dependencies.
 
We have a local repository, mirrored after ibiblio/maven and I get an error 
when it tries to download some jars added by me in the repository manually.
All the jars that came from ibiblio are downloaded ok
 
Question: How can I activate detailed report on downloading dependencies (I saw 
something on a maillist)
 
Attempting to download sje-config.jar.
Getting URL:
http://scm.zrh.swissre.com:8080/releases/sje/jars/sje-config.jar
Received status code: 200
last-modified = Tue, 30 Mar 2004 12:14:47 GMT (1080648887000)
7/7K
7K downloaded
Local timestamp: -1
Remote timestamp: 1080648887000
 
The only report I get is: 
 
Attempting to download .jar.
 
Fail .
 


RE: Problems downloading dependencies in 1.0.1

2004-11-18 Thread Jean-Marc Lavoie

That looks like my first experience with the properties not being
inherited. Check if you have a sub project that rely on the
maven.repo.remote property being inherited from the parent
project.properties . In wich cases, ibilio repository will be used
instead of your repository, jars originnally from ibilio will be
downloaded from ibilio, and your special jars won't be found in ibilio.

Regards
Jean-Marc

-Original Message-
From: Adrian Tarau [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 18, 2004 11:19 AM
To: [EMAIL PROTECTED]
Subject: Problems downloading dependencies in 1.0.1

Hi,
 
I'm using Maven 1.0 and I want to switch to release 1.0.1 but I have
some problems with some dependencies.
 
We have a local repository, mirrored after ibiblio/maven and I get an
error when it tries to download some jars added by me in the repository
manually.
All the jars that came from ibiblio are downloaded ok
 
Question: How can I activate detailed report on downloading dependencies
(I saw something on a maillist)
 
Attempting to download sje-config.jar.
Getting URL:
http://scm.zrh.swissre.com:8080/releases/sje/jars/sje-config.jar
Received status code: 200
last-modified = Tue, 30 Mar 2004 12:14:47 GMT (1080648887000) 7/7K 7K
downloaded Local timestamp: -1 Remote timestamp: 1080648887000
 
The only report I get is: 
 
Attempting to download .jar.
 
Fail .
 

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



RE: Problems downloading dependencies in 1.0.1

2004-11-18 Thread Adrian Tarau

Hi,

Yes, it is a multi project and I checked the settings for the repository.
The settings are only in the multiproject project.xml(You can see it bellow) 
and the sub-projects doesn't override this properties. As I told you with Maven 
1.0 everything works, but with 1.0.1 is not working.

maven.repo.remote=our_server,http://www.ibiblio.org/maven
maven.repo.central=our_server
maven.repo.central.directory=.maven/repository

-Original Message-
From: Jean-Marc Lavoie [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 18, 2004 11:31 AM
To: Maven Users List
Subject: RE: Problems downloading dependencies in 1.0.1


That looks like my first experience with the properties not being
inherited. Check if you have a sub project that rely on the
maven.repo.remote property being inherited from the parent
project.properties . In wich cases, ibilio repository will be used
instead of your repository, jars originnally from ibilio will be
downloaded from ibilio, and your special jars won't be found in ibilio.

Regards
Jean-Marc

-Original Message-
From: Adrian Tarau [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 18, 2004 11:19 AM
To: [EMAIL PROTECTED]
Subject: Problems downloading dependencies in 1.0.1

Hi,
 
I'm using Maven 1.0 and I want to switch to release 1.0.1 but I have
some problems with some dependencies.
 
We have a local repository, mirrored after ibiblio/maven and I get an
error when it tries to download some jars added by me in the repository
manually.
All the jars that came from ibiblio are downloaded ok
 
Question: How can I activate detailed report on downloading dependencies
(I saw something on a maillist)
 
Attempting to download sje-config.jar.
Getting URL:
http://scm.zrh.swissre.com:8080/releases/sje/jars/sje-config.jar
Received status code: 200
last-modified = Tue, 30 Mar 2004 12:14:47 GMT (1080648887000) 7/7K 7K
downloaded Local timestamp: -1 Remote timestamp: 1080648887000
 
The only report I get is: 
 
Attempting to download .jar.
 
Fail .
 

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


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



RE: Problems downloading dependencies in 1.0.1

2004-11-18 Thread Jean-Marc Lavoie

Property inheritance in 1.0.1 is partly broken, there have been some post on it 
already and a Jira filed on this issue. The value does not get inherited, so 
you use ibiblio repository without knowing it, and of course it does not 
contain your custom jars. 

On my work projects, we will wait for 1.0.2 as we have lots of multiproject 
using properties. In my pet-projects at home I use 1.0.1 but I copied the 
missing properties in my subprojects. It's a choice to wait or adapt your 
project. Either way, it's a small price to pay for this wonderfull tool :) . If 
you upgrade to 1.0.1, 2 days ago Jörg Schaible submitted some script on the 
list to modify the project.properties files. See 
http://jira.codehaus.org/BrowseProject.jspa?id=10030 for 1.0.2 details, and 
http://jira.codehaus.org/browse/MAVEN-1501 for this particular isssue.
 
Hope it clarify the issue.
Regards,
Jean-Marc


-Original Message-
From: Adrian Tarau [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 18, 2004 11:39 AM
To: Maven Users List
Subject: RE: Problems downloading dependencies in 1.0.1


Hi,

Yes, it is a multi project and I checked the settings for the repository.
The settings are only in the multiproject project.xml(You can see it bellow) 
and the sub-projects doesn't override this properties. As I told you with Maven 
1.0 everything works, but with 1.0.1 is not working.

maven.repo.remote=our_server,http://www.ibiblio.org/maven
maven.repo.central=our_server
maven.repo.central.directory=.maven/repository

-Original Message-
From: Jean-Marc Lavoie [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 18, 2004 11:31 AM
To: Maven Users List
Subject: RE: Problems downloading dependencies in 1.0.1


That looks like my first experience with the properties not being
inherited. Check if you have a sub project that rely on the
maven.repo.remote property being inherited from the parent
project.properties . In wich cases, ibilio repository will be used
instead of your repository, jars originnally from ibilio will be
downloaded from ibilio, and your special jars won't be found in ibilio.

Regards
Jean-Marc

-Original Message-
From: Adrian Tarau [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 18, 2004 11:19 AM
To: [EMAIL PROTECTED]
Subject: Problems downloading dependencies in 1.0.1

Hi,
 
I'm using Maven 1.0 and I want to switch to release 1.0.1 but I have
some problems with some dependencies.
 
We have a local repository, mirrored after ibiblio/maven and I get an
error when it tries to download some jars added by me in the repository
manually.
All the jars that came from ibiblio are downloaded ok
 
Question: How can I activate detailed report on downloading dependencies
(I saw something on a maillist)
 
Attempting to download sje-config.jar.
Getting URL:
http://scm.zrh.swissre.com:8080/releases/sje/jars/sje-config.jar
Received status code: 200
last-modified = Tue, 30 Mar 2004 12:14:47 GMT (1080648887000) 7/7K 7K
downloaded Local timestamp: -1 Remote timestamp: 1080648887000
 
The only report I get is: 
 
Attempting to download .jar.
 
Fail .
 

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


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


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



RE: Problems downloading dependencies in 1.0.1

2004-11-18 Thread Adrian Tarau

Thanks, I thought was something broken in this release. I think I will wait for 
the next release(version 1.0 works ok).

-Original Message-
From: Jean-Marc Lavoie [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 18, 2004 12:27 PM
To: Maven Users List
Subject: RE: Problems downloading dependencies in 1.0.1


Property inheritance in 1.0.1 is partly broken, there have been some post on it 
already and a Jira filed on this issue. The value does not get inherited, so 
you use ibiblio repository without knowing it, and of course it does not 
contain your custom jars. 

On my work projects, we will wait for 1.0.2 as we have lots of multiproject 
using properties. In my pet-projects at home I use 1.0.1 but I copied the 
missing properties in my subprojects. It's a choice to wait or adapt your 
project. Either way, it's a small price to pay for this wonderfull tool :) . If 
you upgrade to 1.0.1, 2 days ago Jörg Schaible submitted some script on the 
list to modify the project.properties files. See 
http://jira.codehaus.org/BrowseProject.jspa?id=10030 for 1.0.2 details, and 
http://jira.codehaus.org/browse/MAVEN-1501 for this particular isssue.
 
Hope it clarify the issue.
Regards,
Jean-Marc


-Original Message-
From: Adrian Tarau [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 18, 2004 11:39 AM
To: Maven Users List
Subject: RE: Problems downloading dependencies in 1.0.1


Hi,

Yes, it is a multi project and I checked the settings for the repository.
The settings are only in the multiproject project.xml(You can see it bellow) 
and the sub-projects doesn't override this properties. As I told you with Maven 
1.0 everything works, but with 1.0.1 is not working.

maven.repo.remote=our_server,http://www.ibiblio.org/maven
maven.repo.central=our_server
maven.repo.central.directory=.maven/repository

-Original Message-
From: Jean-Marc Lavoie [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 18, 2004 11:31 AM
To: Maven Users List
Subject: RE: Problems downloading dependencies in 1.0.1


That looks like my first experience with the properties not being
inherited. Check if you have a sub project that rely on the
maven.repo.remote property being inherited from the parent
project.properties . In wich cases, ibilio repository will be used
instead of your repository, jars originnally from ibilio will be
downloaded from ibilio, and your special jars won't be found in ibilio.

Regards
Jean-Marc

-Original Message-
From: Adrian Tarau [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 18, 2004 11:19 AM
To: [EMAIL PROTECTED]
Subject: Problems downloading dependencies in 1.0.1

Hi,
 
I'm using Maven 1.0 and I want to switch to release 1.0.1 but I have
some problems with some dependencies.
 
We have a local repository, mirrored after ibiblio/maven and I get an
error when it tries to download some jars added by me in the repository
manually.
All the jars that came from ibiblio are downloaded ok
 
Question: How can I activate detailed report on downloading dependencies
(I saw something on a maillist)
 
Attempting to download sje-config.jar.
Getting URL:
http://scm.zrh.swissre.com:8080/releases/sje/jars/sje-config.jar
Received status code: 200
last-modified = Tue, 30 Mar 2004 12:14:47 GMT (1080648887000) 7/7K 7K
downloaded Local timestamp: -1 Remote timestamp: 1080648887000
 
The only report I get is: 
 
Attempting to download .jar.
 
Fail .
 

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


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


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


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



Re: Problems downloading dependencies

2004-10-15 Thread Brett Porter
This only happens on your own repository, right? External ones seem to
download ok?

Is it some limitation on your internal server that causes the error?

Googling the exact error message: No buffer space available (maximum
connections
reached?): recv failed indicates there are some problems with servers
running on Windows under older versions of the JVM...

On Wed, 13 Oct 2004 13:36:10 +0200, [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
 Hello Brett,
 
 thanks for the quick answer, unfortunately does not get any better:
 I tried to erase all the local repository with no results, some jars are
 correctly downloaded others have a this problems, and the behaviour is
 random.
 
 Any help would be welcome
 
 Michele


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



Problems downloading dependencies

2004-10-13 Thread Michele_Forte
i am using Maven release 1.0, normally I never had a problem, but from a
computer I can notice the following nasty behaviour when downloading
dependencies:

Attempting to download sje-config.jar.
Getting URL:
http://scm.zrh.swissre.com:8080/releases/sje/jars/sje-config.jar
Received status code: 200
last-modified = Tue, 30 Mar 2004 12:14:47 GMT (1080648887000)
7/7K
7K downloaded
Local timestamp: -1
Remote timestamp: 1080648887000
Getting URL:
http://scm.zrh.swissre.com:8080/releases/sje/jars/sje-config.jar.md5
Response content length is not known
Received status code: 404
Attempting to download sr-hcf-v3-3.6.1.jar.
Getting URL:
http://scm.zrh.swissre.com:8080/releases/hcf/jars/sr-hcf-v3-3.6.1.jar
Received status code: 200
last-modified = Thu, 23 Sep 2004 08:02:35 GMT (1095926555000)
64/1159K
71/1159K
74/1159K
75/1159K
78/1159K
79/1159K
82/1159K
83/1159K
86/1159K
87/1159K
90/1159K
91/1159K
94/1159K
95/1159K
98/1159K
99/1159K
102/1159K
103/1159K
106/1159K
107/1159K
110/1159K
111/1159K
114/1159K
115/1159K
118/1159K
119/1159K
122/1159K
123/1159K
126/1159K
127/1159K
130/1159K
131/1159K
132/1159K
Error retrieving artifact from
[http://scm.zrh.swissre.com:8080/releases/hcf/jars/sr-hcf-v3-3.6.1.jar]:
java.net.SocketException: No buffer space available (maximum connections
reached?): recv failed
Error details
java.net.SocketException: No buffer space available (maximum connections
reached?): recv failed
  at java.net.SocketInputStream.socketRead0(Native Method)
  at java.net.SocketInputStream.read(SocketInputStream.java:129)
  at java.io.FilterInputStream.read(FilterInputStream.java:111)
  at java.io.PushbackInputStream.read(PushbackInputStream.java:161)
  at java.io.FilterInputStream.read(FilterInputStream.java:111)
  at
org.apache.commons.httpclient.ContentLengthInputStream.read(ContentLengthInputStream.java:167)
  at java.io.FilterInputStream.read(FilterInputStream.java:111)
  at
org.apache.commons.httpclient.AutoCloseInputStream.read(AutoCloseInputStream.java:142)
  at java.io.FilterInputStream.read(FilterInputStream.java:90)
  at
org.apache.commons.httpclient.AutoCloseInputStream.read(AutoCloseInputStream.java:161)
  at org.apache.maven.util.HttpUtils.process(HttpUtils.java:572)
  at
org.apache.maven.util.HttpUtils.retrieveArtifact(HttpUtils.java:538)
  at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:381)
  at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:287)
  at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:181)
  at
org.apache.maven.verifier.DependencyVerifier.getRemoteArtifact(DependencyVerifier.java:326)
  at
org.apache.maven.verifier.DependencyVerifier.getDependencies(DependencyVerifier.java:255)
  at
org.apache.maven.verifier.DependencyVerifier.satisfyDependencies(DependencyVerifier.java:171)
  at
org.apache.maven.verifier.DependencyVerifier.verify(DependencyVerifier.java:97)
  at
org.apache.maven.project.Project.verifyDependencies(Project.java:1365)
  at
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:510)
  at org.apache.maven.MavenSession.attainGoals(MavenSession.java:266)
  at org.apache.maven.cli.App.doMain(App.java:486)
  at org.apache.maven.cli.App.main(App.java:1215)
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  at java.lang.reflect.Method.invoke(Method.java:324)
  at com.werken.forehead.Forehead.run(Forehead.java:551)
  at com.werken.forehead.Forehead.main(Forehead.java:581)
Getting URL:  http://www.ibiblio.org/maven/hcf/jars/sr-hcf-v3-3.6.1.jar
sending == If-Modified-Since: Tue, 12-Oct-04 13:24:50 GMT
(1097587490362)
Received status code: 404
File not found on one of the repos
java.io.FileNotFoundException:
http://www.ibiblio.org/maven/hcf/jars/sr-hcf-v3-3.6.1.jar
  at
org.apache.maven.util.HttpUtils.retrieveArtifact(HttpUtils.java:547)
  at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:381)
  at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:287)
  at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:181)
  at
org.apache.maven.verifier.DependencyVerifier.getRemoteArtifact(DependencyVerifier.java:326)
  at
org.apache.maven.verifier.DependencyVerifier.getDependencies(DependencyVerifier.java:255)
  at
org.apache.maven.verifier.DependencyVerifier.satisfyDependencies(DependencyVerifier.java:171)
  at
org.apache.maven.verifier.DependencyVerifier.verify(DependencyVerifier.java:97)
  at
org.apache.maven.project.Project.verifyDependencies(Project.java:1365)
  at
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:510)
  at org.apache.maven.MavenSession.attainGoals(MavenSession.java:266)
  at org.apache.maven.cli.App.doMain(App.java:486)
  at 

Re: Problems downloading dependencies

2004-10-13 Thread Brett Porter
the partially downloaded problem is a known bug.

If you remove the local file, does it work the second time?

I'm not sure what that exception is...

- Brett


On Wed, 13 Oct 2004 10:51:15 +0200, [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
 i am using Maven release 1.0, normally I never had a problem, but from a
 computer I can notice the following nasty behaviour when downloading
 dependencies:
 
 Attempting to download sje-config.jar.
 Getting URL:
 http://scm.zrh.swissre.com:8080/releases/sje/jars/sje-config.jar
 Received status code: 200
 last-modified = Tue, 30 Mar 2004 12:14:47 GMT (1080648887000)
 7/7K
 7K downloaded
 Local timestamp: -1
 Remote timestamp: 1080648887000
 Getting URL:
 http://scm.zrh.swissre.com:8080/releases/sje/jars/sje-config.jar.md5
 Response content length is not known
 Received status code: 404
 Attempting to download sr-hcf-v3-3.6.1.jar.
 Getting URL:
 http://scm.zrh.swissre.com:8080/releases/hcf/jars/sr-hcf-v3-3.6.1.jar
 Received status code: 200
 last-modified = Thu, 23 Sep 2004 08:02:35 GMT (1095926555000)
 64/1159K
 71/1159K
 74/1159K
 75/1159K
 78/1159K
 79/1159K
 82/1159K
 83/1159K
 86/1159K
 87/1159K
 90/1159K
 91/1159K
 94/1159K
 95/1159K
 98/1159K
 99/1159K
 102/1159K
 103/1159K
 106/1159K
 107/1159K
 110/1159K
 111/1159K
 114/1159K
 115/1159K
 118/1159K
 119/1159K
 122/1159K
 123/1159K
 126/1159K
 127/1159K
 130/1159K
 131/1159K
 132/1159K
 Error retrieving artifact from
 [http://scm.zrh.swissre.com:8080/releases/hcf/jars/sr-hcf-v3-3.6.1.jar]:
 java.net.SocketException: No buffer space available (maximum connections
 reached?): recv failed
 Error details
 java.net.SocketException: No buffer space available (maximum connections
 reached?): recv failed
   at java.net.SocketInputStream.socketRead0(Native Method)
   at java.net.SocketInputStream.read(SocketInputStream.java:129)
   at java.io.FilterInputStream.read(FilterInputStream.java:111)
   at java.io.PushbackInputStream.read(PushbackInputStream.java:161)
   at java.io.FilterInputStream.read(FilterInputStream.java:111)
   at
 org.apache.commons.httpclient.ContentLengthInputStream.read(ContentLengthInputStream.java:167)
   at java.io.FilterInputStream.read(FilterInputStream.java:111)
   at
 org.apache.commons.httpclient.AutoCloseInputStream.read(AutoCloseInputStream.java:142)
   at java.io.FilterInputStream.read(FilterInputStream.java:90)
   at
 org.apache.commons.httpclient.AutoCloseInputStream.read(AutoCloseInputStream.java:161)
   at org.apache.maven.util.HttpUtils.process(HttpUtils.java:572)
   at
 org.apache.maven.util.HttpUtils.retrieveArtifact(HttpUtils.java:538)
   at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:381)
   at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:287)
   at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:181)
   at
 org.apache.maven.verifier.DependencyVerifier.getRemoteArtifact(DependencyVerifier.java:326)
   at
 org.apache.maven.verifier.DependencyVerifier.getDependencies(DependencyVerifier.java:255)
   at
 org.apache.maven.verifier.DependencyVerifier.satisfyDependencies(DependencyVerifier.java:171)
   at
 org.apache.maven.verifier.DependencyVerifier.verify(DependencyVerifier.java:97)
   at
 org.apache.maven.project.Project.verifyDependencies(Project.java:1365)
   at
 org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:510)
   at org.apache.maven.MavenSession.attainGoals(MavenSession.java:266)
   at org.apache.maven.cli.App.doMain(App.java:486)
   at org.apache.maven.cli.App.main(App.java:1215)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
   at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
   at java.lang.reflect.Method.invoke(Method.java:324)
   at com.werken.forehead.Forehead.run(Forehead.java:551)
   at com.werken.forehead.Forehead.main(Forehead.java:581)
 Getting URL:  http://www.ibiblio.org/maven/hcf/jars/sr-hcf-v3-3.6.1.jar
 sending == If-Modified-Since: Tue, 12-Oct-04 13:24:50 GMT
 (1097587490362)
 Received status code: 404
 File not found on one of the repos
 java.io.FileNotFoundException:
 http://www.ibiblio.org/maven/hcf/jars/sr-hcf-v3-3.6.1.jar
   at
 org.apache.maven.util.HttpUtils.retrieveArtifact(HttpUtils.java:547)
   at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:381)
   at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:287)
   at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:181)
   at
 org.apache.maven.verifier.DependencyVerifier.getRemoteArtifact(DependencyVerifier.java:326)
   at
 org.apache.maven.verifier.DependencyVerifier.getDependencies(DependencyVerifier.java:255)
   at
 org.apache.maven.verifier.DependencyVerifier.satisfyDependencies(DependencyVerifier.java:171)
   at
 

Re: Problems downloading dependencies

2004-10-13 Thread Michele_Forte
Hello Brett,

thanks for the quick answer, unfortunately does not get any better:
I tried to erase all the local repository with no results, some jars are
correctly downloaded others have a this problems, and the behaviour is
random.

Any help would be welcome

Michele


|-+
| |   Brett Porter |
| |   [EMAIL PROTECTED]|
| |   il.com  |
| ||
| ||
| |   13/10/2004 11:57 |
| |   Please respond to|
| |   Maven Users |
| |   List|
|-+
  
---|
  |
   |
  |
   |
  |
   |
  |
   |
  |
   |
  |To: Maven Users List [EMAIL 
PROTECTED]  |
  |cc: (bcc: Michele Forte/SwissRe)
   |
  |bcc:Michele Forte/SwissRe   
   |
  |Subject:Re: Problems downloading 
dependencies  |
  
---|




the partially downloaded problem is a known bug.

If you remove the local file, does it work the second time?

I'm not sure what that exception is...

- Brett


On Wed, 13 Oct 2004 10:51:15 +0200, [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
 i am using Maven release 1.0, normally I never had a problem, but from a
 computer I can notice the following nasty behaviour when downloading
 dependencies:

 Attempting to download sje-config.jar.
 Getting URL:
 http://scm.zrh.swissre.com:8080/releases/sje/jars/sje-config.jar
 Received status code: 200
 last-modified = Tue, 30 Mar 2004 12:14:47 GMT (1080648887000)
 7/7K
 7K downloaded
 Local timestamp: -1
 Remote timestamp: 1080648887000
 Getting URL:
 http://scm.zrh.swissre.com:8080/releases/sje/jars/sje-config.jar.md5
 Response content length is not known
 Received status code: 404
 Attempting to download sr-hcf-v3-3.6.1.jar.
 Getting URL:
 http://scm.zrh.swissre.com:8080/releases/hcf/jars/sr-hcf-v3-3.6.1.jar
 Received status code: 200
 last-modified = Thu, 23 Sep 2004 08:02:35 GMT (1095926555000)
 64/1159K
 71/1159K
 74/1159K
 75/1159K
 78/1159K
 79/1159K
 82/1159K
 83/1159K
 86/1159K
 87/1159K
 90/1159K
 91/1159K
 94/1159K
 95/1159K
 98/1159K
 99/1159K
 102/1159K
 103/1159K
 106/1159K
 107/1159K
 110/1159K
 111/1159K
 114/1159K
 115/1159K
 118/1159K
 119/1159K
 122/1159K
 123/1159K
 126/1159K
 127/1159K
 130/1159K
 131/1159K
 132/1159K
 Error retrieving artifact from
 [http://scm.zrh.swissre.com:8080/releases/hcf/jars/sr-hcf-v3-3.6.1.jar]:
 java.net.SocketException: No buffer space available (maximum connections
 reached?): recv failed
 Error details
 java.net.SocketException: No buffer space available (maximum connections
 reached?): recv failed
   at java.net.SocketInputStream.socketRead0(Native Method)
   at java.net.SocketInputStream.read(SocketInputStream.java:129)
   at java.io.FilterInputStream.read(FilterInputStream.java:111)
   at java.io.PushbackInputStream.read(PushbackInputStream.java:161)
   at java.io.FilterInputStream.read(FilterInputStream.java:111)
   at

org.apache.commons.httpclient.ContentLengthInputStream.read(ContentLengthInputStream.java:167)

   at java.io.FilterInputStream.read(FilterInputStream.java:111)
   at

org.apache.commons.httpclient.AutoCloseInputStream.read(AutoCloseInputStream.java:142)

   at java.io.FilterInputStream.read(FilterInputStream.java:90)
   at

org.apache.commons.httpclient.AutoCloseInputStream.read(AutoCloseInputStream.java:161)

   at org.apache.maven.util.HttpUtils.process(HttpUtils.java:572)
   at
 org.apache.maven.util.HttpUtils.retrieveArtifact(HttpUtils.java:538)
   at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:381)
   at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:287)
   at org.apache.maven.util.HttpUtils.getFile(HttpUtils.java:181