RE: sets repository in settings.xml?

2006-12-23 Thread jiangshachina
Hello, Thanks for the reply. I know that we can set local repository(-Dmaven.repo.local=xxx) at command line, then can I set remote repository(e.g. repository.codehaus.org) at command? Thanks! a cup of Java, cheers! Sha Jiang Mohni, Daniel wrote: Hello Sha Jiang Answers inline...

Re: Is rsync with central repo still possible?

2006-12-23 Thread Carlos Sanchez
Check at the end of http://maven.apache.org/guides/mini/guide-mirror-settings.html rsync -v -t -l -r mirrors.ibiblio.org::maven2 /your/local/path On 12/23/06, mraible [EMAIL PROTECTED] wrote: Rsyncing with ibiblio used to be possible using the following: rsync -v -t -l -r

Re: sets repository in settings.xml?

2006-12-23 Thread mylene
Hi, In maven1 you can set -Dmaven.repo.remote (not very surprising). In maven2 AFAIK you have to set it in the POM. Mylene On 12/23/06, jiangshachina [EMAIL PROTECTED] wrote: Hello, Thanks for the reply. I know that we can set local repository(-Dmaven.repo.local=xxx) at command line, then

Is it possible to deploy a jar without rebuilding

2006-12-23 Thread Laura Hinojosa
Is it possible to deploy a jar without having to rebuild it? Let's said that you have a jar, version 1.0.0-beta-3 that was deployed to a test repository. You have tested it very well, so you want to release that jar, without having to rebuild it. Is it possible to rename the jar to version

Re: Is it possible to deploy a jar without rebuilding

2006-12-23 Thread Tom Huybrechts
Renaming the jar does not work, since the associated POM also has embedded version information. An alternative is to move to 1.0.1 first, and deploy it to a staging repository, test it, and then copy it over (there are tools that can do this). Tom On 12/23/06, Laura Hinojosa [EMAIL PROTECTED]

Re: Installing Maven 2 repo reg.

2006-12-23 Thread Wendy Smoak
On 12/23/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I am new to ActiveMQ. Am trying to install ActiveMQ 4.1.0 Release(Windows Binary Installation) on my machine. I have a doubt whether to install Maven 2 Repositories or not. Please clafiry me whether its a manditory one. Probably not,

Error trying to use the maven-antrun plugin

2006-12-23 Thread Morgovsky, Alexander \(US - Glen Mills\)
Please make sure that your JAVA_HOME environment variable is set. Also, to make sure that this variable is correctly being resolved by doing something like echo message=${env.JAVA_HOME}/. You may also need to add Java dependencies to your dependencies section of your maven-antrun plugin

RE: Is it possible to deploy a jar without rebuilding

2006-12-23 Thread Laura Hinojosa
Thank you! Do you know what tools? Laura From: Tom Huybrechts [mailto:[EMAIL PROTECTED] Sent: Sat 12/23/2006 8:48 AM To: Maven Users List Subject: Re: Is it possible to deploy a jar without rebuilding Renaming the jar does not work, since the associated

Re: sets repository in settings.xml?

2006-12-23 Thread jiangshachina
Well, thanks! a cup of Java, cheers! Sha Jiang mylene wrote: Hi, In maven1 you can set -Dmaven.repo.remote (not very surprising). In maven2 AFAIK you have to set it in the POM. Mylene On 12/23/06, jiangshachina [EMAIL PROTECTED] wrote: Hello, Thanks for the reply. I know that