Re: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-06 Thread Brett Porter
I don't know... perhaps permissions on the file at the time of
deployment? Not sure why that wouldn't have caused a failure though.

- Brett

On 2/7/06, Brian E. Fox <[EMAIL PROTECTED]> wrote:
> Brett,
> Why aren't any of the other released plugins in this metadata? For example, 
> dependency?
>
> -Original Message-
> From: Brett Porter [mailto:[EMAIL PROTECTED]
> Sent: Monday, February 06, 2006 2:39 AM
> To: Maven Users List
> Subject: Re: downloading plug-ins from mojo (org.codehaus.mojo)?
>
> The problem is that the entry is not in here:
> http://www.ibiblio.org/maven2/org/codehaus/mojo/maven-metadata.xml
>
> Once the plugin is released, it will be remedied.
>
> - Brett
>
> On 2/6/06, Hervé BOUTEMY <[EMAIL PROTECTED]> wrote:
> > oh, I see : I did not know it was possible.
> >
> > How is "mvn jxr:jxr" converted to
> > org.apache.maven.plugins:maven-jxr-plugin,
> > when it should be org.codehaus.mojo:jxr-maven-plugin ? The fact that
> > the groupId is different seems intriguing to me : the conversion rule
> > cannot work only on artifactId, but both on groupId and artifactId.
> >
> > Now that the jxr plugin is in local cache, perhaps you don't need the
> > pom entry any more.
> > I made the following test : having the jxr plugin in my local cache,
> > "mvn jxr:jxr" works perfectly without the jxr pom entry. But after
> > deleting my cache ("rm -rf ~/.m2/repository/org/codehaus/mojo/"), it
> > doesn't work any more : I get the same error stated by Chris at the 
> > beginning.
> >
> > Then this problem does happen only to new users, who have an empty
> > local cache.
> >
> > Hervé
> >
> > Le Lundi 06 Février 2006 04:07, Brian E. Fox a écrit :
> > > Yes, but if you run it from the command line, you don't need to put
> > > it in the pom. If it is in the pom incorrectly, then that will cause
> > > problems. I tested it on a random project with nothing in my pom for
> > > the plugin and it found it ok.
> > >
> > > -Original Message-
> > > From: Hervé BOUTEMY [mailto:[EMAIL PROTECTED]
> > > Sent: Sunday, February 05, 2006 6:09 PM
> > > To: Maven Users List
> > > Subject: Re: downloading plug-ins from mojo (org.codehaus.mojo)?
> > >
> > > it's jxr-maven-plugin, not maven-jxr-plugin : I did the same mistake
> > > some time ago... The convention is not the same between
> > > org.apache.maven.plugins
> > > (maven-xxx-plugin) and org.codehaus.mojo (xxx-maven-plugin).
> > >
> > > Jira http://jira.codehaus.org/browse/MPLUGIN-11 is an attempt to
> > > help newbies to copy/paste a pom excerpt to avoid such mistakes :
> > > please vote for it.
> > >
> > > Hervé
> > >
> > > Le Dimanche 05 Février 2006 22:34, Chris Markle a écrit :
> > > > Brian et al,
> > > >
> > > > > Hrm, works ok for me. What version of maven are you using?
> > > >
> > > > Maven 2:
> > > >
> > > > C:\blah> mvn --version
> > > > Maven version: 2.0.2
> > > >
> > > >  > Try mvn -U jxr:jxr and see what happens.
> > > >
> > > > C:\blah> mvn --version
> > > > Maven version: 2.0.2
> > > >
> > > > C:\blah> mvn -U jxr:jxr
> > > >
> > > > [INFO] Scanning for projects...
> > > > [INFO] Searching repository for plugin with prefix: 'jxr'.
> > > > [INFO] org.apache.maven.plugins: checking for updates from central
> > > > [INFO] org.codehaus.mojo: checking for updates from central [INFO]
> > > > artifact org.apache.maven.plugins:maven-jxr-plugin: checking for
> > > > updates from central ...
> > > > [ERROR] BUILD ERROR
> > > > ...
> > > > [INFO] The plugin 'org.apache.maven.plugins:maven-jxr-plugin' does
> > > > not exist or no valid version could be found
> > > >
> > > > No joy :(
> > > >
> > > > Chris
> > > >
> > > > --
> > > > --- 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]
> >
> >
>
> -
> 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: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-06 Thread Brian E. Fox
Brett,
Why aren't any of the other released plugins in this metadata? For example, 
dependency?  

-Original Message-
From: Brett Porter [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 06, 2006 2:39 AM
To: Maven Users List
Subject: Re: downloading plug-ins from mojo (org.codehaus.mojo)?

The problem is that the entry is not in here:
http://www.ibiblio.org/maven2/org/codehaus/mojo/maven-metadata.xml

Once the plugin is released, it will be remedied.

- Brett

On 2/6/06, Hervé BOUTEMY <[EMAIL PROTECTED]> wrote:
> oh, I see : I did not know it was possible.
>
> How is "mvn jxr:jxr" converted to 
> org.apache.maven.plugins:maven-jxr-plugin,
> when it should be org.codehaus.mojo:jxr-maven-plugin ? The fact that 
> the groupId is different seems intriguing to me : the conversion rule 
> cannot work only on artifactId, but both on groupId and artifactId.
>
> Now that the jxr plugin is in local cache, perhaps you don't need the 
> pom entry any more.
> I made the following test : having the jxr plugin in my local cache, 
> "mvn jxr:jxr" works perfectly without the jxr pom entry. But after 
> deleting my cache ("rm -rf ~/.m2/repository/org/codehaus/mojo/"), it 
> doesn't work any more : I get the same error stated by Chris at the beginning.
>
> Then this problem does happen only to new users, who have an empty 
> local cache.
>
> Hervé
>
> Le Lundi 06 Février 2006 04:07, Brian E. Fox a écrit :
> > Yes, but if you run it from the command line, you don't need to put 
> > it in the pom. If it is in the pom incorrectly, then that will cause 
> > problems. I tested it on a random project with nothing in my pom for 
> > the plugin and it found it ok.
> >
> > -Original Message-----
> > From: Hervé BOUTEMY [mailto:[EMAIL PROTECTED]
> > Sent: Sunday, February 05, 2006 6:09 PM
> > To: Maven Users List
> > Subject: Re: downloading plug-ins from mojo (org.codehaus.mojo)?
> >
> > it's jxr-maven-plugin, not maven-jxr-plugin : I did the same mistake 
> > some time ago... The convention is not the same between 
> > org.apache.maven.plugins
> > (maven-xxx-plugin) and org.codehaus.mojo (xxx-maven-plugin).
> >
> > Jira http://jira.codehaus.org/browse/MPLUGIN-11 is an attempt to 
> > help newbies to copy/paste a pom excerpt to avoid such mistakes : 
> > please vote for it.
> >
> > Hervé
> >
> > Le Dimanche 05 Février 2006 22:34, Chris Markle a écrit :
> > > Brian et al,
> > >
> > > > Hrm, works ok for me. What version of maven are you using?
> > >
> > > Maven 2:
> > >
> > > C:\blah> mvn --version
> > > Maven version: 2.0.2
> > >
> > >  > Try mvn -U jxr:jxr and see what happens.
> > >
> > > C:\blah> mvn --version
> > > Maven version: 2.0.2
> > >
> > > C:\blah> mvn -U jxr:jxr
> > >
> > > [INFO] Scanning for projects...
> > > [INFO] Searching repository for plugin with prefix: 'jxr'.
> > > [INFO] org.apache.maven.plugins: checking for updates from central 
> > > [INFO] org.codehaus.mojo: checking for updates from central [INFO] 
> > > artifact org.apache.maven.plugins:maven-jxr-plugin: checking for 
> > > updates from central ...
> > > [ERROR] BUILD ERROR
> > > ...
> > > [INFO] The plugin 'org.apache.maven.plugins:maven-jxr-plugin' does 
> > > not exist or no valid version could be found
> > >
> > > No joy :(
> > >
> > > Chris
> > >
> > > --
> > > --- 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]
>
>

-
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: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-05 Thread Brett Porter
The problem is that the entry is not in here:
http://www.ibiblio.org/maven2/org/codehaus/mojo/maven-metadata.xml

Once the plugin is released, it will be remedied.

- Brett

On 2/6/06, Hervé BOUTEMY <[EMAIL PROTECTED]> wrote:
> oh, I see : I did not know it was possible.
>
> How is "mvn jxr:jxr" converted to org.apache.maven.plugins:maven-jxr-plugin,
> when it should be org.codehaus.mojo:jxr-maven-plugin ? The fact that the
> groupId is different seems intriguing to me : the conversion rule cannot work
> only on artifactId, but both on groupId and artifactId.
>
> Now that the jxr plugin is in local cache, perhaps you don't need the pom
> entry any more.
> I made the following test : having the jxr plugin in my local cache, "mvn
> jxr:jxr" works perfectly without the jxr pom entry. But after deleting my
> cache ("rm -rf ~/.m2/repository/org/codehaus/mojo/"), it doesn't work any
> more : I get the same error stated by Chris at the beginning.
>
> Then this problem does happen only to new users, who have an empty local
> cache.
>
> Hervé
>
> Le Lundi 06 Février 2006 04:07, Brian E. Fox a écrit :
> > Yes, but if you run it from the command line, you don't need to put it in
> > the pom. If it is in the pom incorrectly, then that will cause problems. I
> > tested it on a random project with nothing in my pom for the plugin and it
> > found it ok.
> >
> > -Original Message-
> > From: Hervé BOUTEMY [mailto:[EMAIL PROTECTED]
> > Sent: Sunday, February 05, 2006 6:09 PM
> > To: Maven Users List
> > Subject: Re: downloading plug-ins from mojo (org.codehaus.mojo)?
> >
> > it's jxr-maven-plugin, not maven-jxr-plugin : I did the same mistake some
> > time ago... The convention is not the same between org.apache.maven.plugins
> > (maven-xxx-plugin) and org.codehaus.mojo (xxx-maven-plugin).
> >
> > Jira http://jira.codehaus.org/browse/MPLUGIN-11 is an attempt to help
> > newbies to copy/paste a pom excerpt to avoid such mistakes : please vote
> > for it.
> >
> > Hervé
> >
> > Le Dimanche 05 Février 2006 22:34, Chris Markle a écrit :
> > > Brian et al,
> > >
> > > > Hrm, works ok for me. What version of maven are you using?
> > >
> > > Maven 2:
> > >
> > > C:\blah> mvn --version
> > > Maven version: 2.0.2
> > >
> > >  > Try mvn -U jxr:jxr and see what happens.
> > >
> > > C:\blah> mvn --version
> > > Maven version: 2.0.2
> > >
> > > C:\blah> mvn -U jxr:jxr
> > >
> > > [INFO] Scanning for projects...
> > > [INFO] Searching repository for plugin with prefix: 'jxr'.
> > > [INFO] org.apache.maven.plugins: checking for updates from central
> > > [INFO] org.codehaus.mojo: checking for updates from central [INFO]
> > > artifact org.apache.maven.plugins:maven-jxr-plugin: checking for
> > > updates from central ...
> > > [ERROR] BUILD ERROR
> > > ...
> > > [INFO] The plugin 'org.apache.maven.plugins:maven-jxr-plugin' does not
> > > exist or no valid version could be found
> > >
> > > No joy :(
> > >
> > > Chris
> > >
> > > -
> > > 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]
>
>

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



Re: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-05 Thread Hervé BOUTEMY
oh, I see : I did not know it was possible.

How is "mvn jxr:jxr" converted to org.apache.maven.plugins:maven-jxr-plugin, 
when it should be org.codehaus.mojo:jxr-maven-plugin ? The fact that the 
groupId is different seems intriguing to me : the conversion rule cannot work 
only on artifactId, but both on groupId and artifactId.

Now that the jxr plugin is in local cache, perhaps you don't need the pom 
entry any more.
I made the following test : having the jxr plugin in my local cache, "mvn 
jxr:jxr" works perfectly without the jxr pom entry. But after deleting my 
cache ("rm -rf ~/.m2/repository/org/codehaus/mojo/"), it doesn't work any 
more : I get the same error stated by Chris at the beginning.

Then this problem does happen only to new users, who have an empty local 
cache.

Hervé

Le Lundi 06 Février 2006 04:07, Brian E. Fox a écrit :
> Yes, but if you run it from the command line, you don't need to put it in
> the pom. If it is in the pom incorrectly, then that will cause problems. I
> tested it on a random project with nothing in my pom for the plugin and it
> found it ok.
>
> -Original Message-
> From: Hervé BOUTEMY [mailto:[EMAIL PROTECTED]
> Sent: Sunday, February 05, 2006 6:09 PM
> To: Maven Users List
> Subject: Re: downloading plug-ins from mojo (org.codehaus.mojo)?
>
> it's jxr-maven-plugin, not maven-jxr-plugin : I did the same mistake some
> time ago... The convention is not the same between org.apache.maven.plugins
> (maven-xxx-plugin) and org.codehaus.mojo (xxx-maven-plugin).
>
> Jira http://jira.codehaus.org/browse/MPLUGIN-11 is an attempt to help
> newbies to copy/paste a pom excerpt to avoid such mistakes : please vote
> for it.
>
> Hervé
>
> Le Dimanche 05 Février 2006 22:34, Chris Markle a écrit :
> > Brian et al,
> >
> > > Hrm, works ok for me. What version of maven are you using?
> >
> > Maven 2:
> >
> > C:\blah> mvn --version
> > Maven version: 2.0.2
> >
> >  > Try mvn -U jxr:jxr and see what happens.
> >
> > C:\blah> mvn --version
> > Maven version: 2.0.2
> >
> > C:\blah> mvn -U jxr:jxr
> >
> > [INFO] Scanning for projects...
> > [INFO] Searching repository for plugin with prefix: 'jxr'.
> > [INFO] org.apache.maven.plugins: checking for updates from central
> > [INFO] org.codehaus.mojo: checking for updates from central [INFO]
> > artifact org.apache.maven.plugins:maven-jxr-plugin: checking for
> > updates from central ...
> > [ERROR] BUILD ERROR
> > ...
> > [INFO] The plugin 'org.apache.maven.plugins:maven-jxr-plugin' does not
> > exist or no valid version could be found
> >
> > No joy :(
> >
> > Chris
> >
> > -
> > 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: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-05 Thread Chris Markle

Brain et al,

Yes, but if you run it from the command line, you don't 

> need to put it in the pom. If it is in the pom incorrectly,
> then that will cause problems. I tested it on a random
> project with nothing in my pom for the plugin and it found
> it ok.

I did find that if I added this to the POM then I was able to get the 
jxr plugin automatically by Maven2:



  
org.codehaus.mojo
jxr-maven-plugin
  


I was just under the impression as stated earlier that org.codehaus.mojo 
plug-ins would be found automatically...


Chris

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



Re: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-05 Thread Chris Markle

Brian, Herve,

Herve wrote:
>> it's jxr-maven-plugin, not maven-jxr-plugin : I did the same mistake
>> some time ago... The convention is not the same between
>> org.apache.maven.plugins (maven-xxx-plugin) and org.codehaus.mojo
>> (xxx-maven-plugin).

Brian replied:
Yes, but if you run it from the command line, you don't need to put it 

> in the pom. If it is in the pom incorrectly, then that will cause
> problems. I tested it on a random project with nothing in my pom for
> the plugin and it found it ok.

I am not specifying the plug-in at all in the pom. So I'm not sure that 
your comment Herve is applicable to me :( Brain how can I try to 
reproduce the test you're running. I will note that I am a new Maven 
user so this 2.0.2 version is my very first install. Are we talking 
fresh install in your case as well?


Chris

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



RE: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-05 Thread Brian E. Fox
Yes, but if you run it from the command line, you don't need to put it in the 
pom. If it is in the pom incorrectly, then that will cause problems. I tested 
it on a random project with nothing in my pom for the plugin and it found it 
ok. 

-Original Message-
From: Hervé BOUTEMY [mailto:[EMAIL PROTECTED] 
Sent: Sunday, February 05, 2006 6:09 PM
To: Maven Users List
Subject: Re: downloading plug-ins from mojo (org.codehaus.mojo)?

it's jxr-maven-plugin, not maven-jxr-plugin : I did the same mistake some time 
ago...
The convention is not the same between org.apache.maven.plugins
(maven-xxx-plugin) and org.codehaus.mojo (xxx-maven-plugin).

Jira http://jira.codehaus.org/browse/MPLUGIN-11 is an attempt to help newbies 
to copy/paste a pom excerpt to avoid such mistakes : please vote for it.

Hervé

Le Dimanche 05 Février 2006 22:34, Chris Markle a écrit :
> Brian et al,
>
> > Hrm, works ok for me. What version of maven are you using?
>
> Maven 2:
>
> C:\blah> mvn --version
> Maven version: 2.0.2
>
>  > Try mvn -U jxr:jxr and see what happens.
>
> C:\blah> mvn --version
> Maven version: 2.0.2
>
> C:\blah> mvn -U jxr:jxr
>
> [INFO] Scanning for projects...
> [INFO] Searching repository for plugin with prefix: 'jxr'.
> [INFO] org.apache.maven.plugins: checking for updates from central 
> [INFO] org.codehaus.mojo: checking for updates from central [INFO] 
> artifact org.apache.maven.plugins:maven-jxr-plugin: checking for 
> updates from central ...
> [ERROR] BUILD ERROR
> ...
> [INFO] The plugin 'org.apache.maven.plugins:maven-jxr-plugin' does not 
> exist or no valid version could be found
>
> No joy :(
>
> Chris
>
> -
> 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: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-05 Thread Hervé BOUTEMY
it's jxr-maven-plugin, not maven-jxr-plugin : I did the same mistake some time 
ago...
The convention is not the same between org.apache.maven.plugins 
(maven-xxx-plugin) and org.codehaus.mojo (xxx-maven-plugin).

Jira http://jira.codehaus.org/browse/MPLUGIN-11 is an attempt to help newbies 
to copy/paste a pom excerpt to avoid such mistakes : please vote for it.

Hervé

Le Dimanche 05 Février 2006 22:34, Chris Markle a écrit :
> Brian et al,
>
> > Hrm, works ok for me. What version of maven are you using?
>
> Maven 2:
>
> C:\blah> mvn --version
> Maven version: 2.0.2
>
>  > Try mvn -U jxr:jxr and see what happens.
>
> C:\blah> mvn --version
> Maven version: 2.0.2
>
> C:\blah> mvn -U jxr:jxr
>
> [INFO] Scanning for projects...
> [INFO] Searching repository for plugin with prefix: 'jxr'.
> [INFO] org.apache.maven.plugins: checking for updates from central
> [INFO] org.codehaus.mojo: checking for updates from central
> [INFO] artifact org.apache.maven.plugins:maven-jxr-plugin: checking for
> updates from central
> ...
> [ERROR] BUILD ERROR
> ...
> [INFO] The plugin 'org.apache.maven.plugins:maven-jxr-plugin' does not
> exist or no valid version could be found
>
> No joy :(
>
> Chris
>
> -
> 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: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-05 Thread Chris Markle

Brian et al,

Hrm, works ok for me. What version of maven are you using? 


Maven 2:

C:\blah> mvn --version
Maven version: 2.0.2

> Try mvn -U jxr:jxr and see what happens.

C:\blah> mvn --version
Maven version: 2.0.2

C:\blah> mvn -U jxr:jxr

[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'jxr'.
[INFO] org.apache.maven.plugins: checking for updates from central
[INFO] org.codehaus.mojo: checking for updates from central
[INFO] artifact org.apache.maven.plugins:maven-jxr-plugin: checking for 
updates from central

...
[ERROR] BUILD ERROR
...
[INFO] The plugin 'org.apache.maven.plugins:maven-jxr-plugin' does not 
exist or no valid version could be found


No joy :(

Chris

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



RE: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-05 Thread Brian E. Fox
Hrm, works ok for me. What version of maven are you using? Try mvn -U
jxr:jxr and see what happens. 

-Original Message-
From: Chris Markle [mailto:[EMAIL PROTECTED] 
Sent: Sunday, February 05, 2006 3:34 PM
To: users@maven.apache.org
Subject: downloading plug-ins from mojo (org.codehaus.mojo)?

Folks,

Newbie here so be gentle please ;) I read in
http://maven.apache.org/guides/introduction/introduction-to-plugin-prefi
x-mapping.html
in the section entitled "Configuring Maven to Search for Plugins" that:

Maven will always search the following groupId's after searching any
plugin groups specified in the user's settings:
 * org.apache.maven.plugins
 * org.codehaus.mojo

So that led me to believe that if I wanted to use the mojo jxr plug-in
all I had to do was access it from Maven (2) and since this was a
org.codehaus.mojo plug-in, it would be found (I have had no probs
getting plug-ins from org.apache.maven.plugins). When I tried a:

mvn jxr:jxr

I get the following error which leads me to believe this is not working
as stated or I am misunderstanding how this works:

C:\blah> mvn jxr:jxr
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'jxr'.
[ERROR] BUILD ERROR
[INFO] The plugin 'org.apache.maven.plugins:maven-jxr-plugin' does not
exist or no valid version could be found

Any ideas?

Chris



-
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]



downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-05 Thread Chris Markle

Folks,

Newbie here so be gentle please ;) I read in 
http://maven.apache.org/guides/introduction/introduction-to-plugin-prefix-mapping.html 
in the section entitled "Configuring Maven to Search for Plugins" that:


Maven will always search the following groupId's after searching any 
plugin groups specified in the user's settings:

* org.apache.maven.plugins
* org.codehaus.mojo

So that led me to believe that if I wanted to use the mojo jxr plug-in 
all I had to do was access it from Maven (2) and since this was a 
org.codehaus.mojo plug-in, it would be found (I have had no probs 
getting plug-ins from org.apache.maven.plugins). When I tried a:


mvn jxr:jxr

I get the following error which leads me to believe this is not working 
as stated or I am misunderstanding how this works:


C:\blah> mvn jxr:jxr
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'jxr'.
[ERROR] BUILD ERROR
[INFO] The plugin 'org.apache.maven.plugins:maven-jxr-plugin' does not 
exist or no valid version could be found


Any ideas?

Chris



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