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]