You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Emmanuel Hugonnet <eh...@orange-ft.com> on 2006/11/17 17:00:27 UTC

QDox, Maven Plugin and JDK 1.5

Hi,
Is there some way to specify where is the MOJO so that Qdox doesn't 
parse my JDK1.5 classes ?
Thanks
Emmanuel

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: QDox, Maven Plugin and JDK 1.5

Posted by Emmanuel Hugonnet <eh...@orange-ft.com>.
Andrew Williams a écrit :
> http://repo1.maven.org/maven2/qdox/qdox/1.6.1/
>
>
There is no pom.xml file at the specified URL so I have installed the 
qdox 1.6.1 in my local repository.
I am trying to build a simple plugin, but the maven-plugin-tool-java 
uses a direct reference to qdox 1.5 that i can't seem to be able to 
override except by modifying locally the
maven-plugin-tool-java's pom which is unsactisfactory.
Emmanuel

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: QDox, Maven Plugin and JDK 1.5

Posted by Andrew Williams <an...@handyande.co.uk>.
http://repo1.maven.org/maven2/qdox/qdox/1.6.1/

On 22 Nov 2006, at 12:19, Emmanuel Hugonnet wrote:

> zze- HUGONNET E ext RD-BIZZ a écrit :
>> zze- HUGONNET E ext RD-BIZZ a écrit :
>>> Andrew Williams a écrit :
>>>> I recommend 1.6.1, as 1.6 depends on Java5 by mistake
>>>>
>>>> Emmanuel Hugonnet wrote:
>>>>> zze- HUGONNET E ext RD-BIZZ a écrit :
>>>>>> Hi,
>>>>>> Is there some way to specify where is the MOJO so that Qdox  
>>>>>> doesn't parse my JDK1.5 classes ?
>>>>>> Thanks
>>>>>> Emmanuel
>>>>>>
>>>>>> ----------------------------------------------------------------- 
>>>>>> ----
>>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>>>
>>>>>>
>>>>> Couldn't we have maven-plugin-tools-java SNAPSHOT dependant on  
>>>>> qdox 1.6 ?
>>>>>
>>>>> ------------------------------------------------------------------ 
>>>>> ---
>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>>
>>>>
>>>>
>>>> ------------------------------------------------------------------- 
>>>> --
>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>
>>>>
>>> I don't know how-to redefined this dependency.
>>> I have tried to use the dependencyManager to override the qdox  
>>> 1.5 dependency but when I run with -X it is still using 1.5  
>>> instead of 1.6.1 :(and it is still failing while parsing my enum.
>>> I have also tried to exclude qdox from my dependency to maven- 
>>> plugin-tool and added a direct dependecy to version 1.6.1 but  
>>> thsi is alos not working.
>>> Is it because this is some kind of core maven component which  
>>> can't be overrided ?
>>> I will try to build a local version of maven-plugin-tool but i am  
>>> not sure this will be sufficient.
>>> Emmanuel
>>>
>>> -------------------------------------------------------------------- 
>>> -
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>>
>> Andrew,
>> As I have written here : http://www.nabble.com/Buiding-a-simple- 
>> plugin-%3A%28-tf2669138s177.html#a7468218, I have a problem to use  
>> QDox 1.6.1 to build my plugin. How do you do this ?
>> Thanks
>> Emmanuel
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> Well it seems that qdox 1.6.1 doesn't have a pom.xml attached on  
> maven2 repository :(
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: QDox, Maven Plugin and JDK 1.5

Posted by Emmanuel Hugonnet <eh...@orange-ft.com>.
zze- HUGONNET E ext RD-BIZZ a écrit :
> zze- HUGONNET E ext RD-BIZZ a écrit :
>> Andrew Williams a écrit :
>>> I recommend 1.6.1, as 1.6 depends on Java5 by mistake
>>>
>>> Emmanuel Hugonnet wrote:
>>>> zze- HUGONNET E ext RD-BIZZ a écrit :
>>>>> Hi,
>>>>> Is there some way to specify where is the MOJO so that Qdox 
>>>>> doesn't parse my JDK1.5 classes ?
>>>>> Thanks
>>>>> Emmanuel
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>>
>>>>>
>>>> Couldn't we have maven-plugin-tools-java SNAPSHOT dependant on qdox 
>>>> 1.6 ?
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>>
>> I don't know how-to redefined this dependency.
>> I have tried to use the dependencyManager to override the qdox 1.5 
>> dependency but when I run with -X it is still using 1.5 instead of 
>> 1.6.1 :(and it is still failing while parsing my enum.
>> I have also tried to exclude qdox from my dependency to 
>> maven-plugin-tool and added a direct dependecy to version 1.6.1 but 
>> thsi is alos not working.
>> Is it because this is some kind of core maven component which can't 
>> be overrided ?
>> I will try to build a local version of maven-plugin-tool but i am not 
>> sure this will be sufficient.
>> Emmanuel
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> Andrew,
> As I have written here : 
> http://www.nabble.com/Buiding-a-simple-plugin-%3A%28-tf2669138s177.html#a7468218, 
> I have a problem to use QDox 1.6.1 to build my plugin. How do you do 
> this ?
> Thanks
> Emmanuel
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
Well it seems that qdox 1.6.1 doesn't have a pom.xml attached on maven2 
repository :(

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: QDox, Maven Plugin and JDK 1.5

Posted by Emmanuel Hugonnet <eh...@orange-ft.com>.
zze- HUGONNET E ext RD-BIZZ a écrit :
> Andrew Williams a écrit :
>> I recommend 1.6.1, as 1.6 depends on Java5 by mistake
>>
>> Emmanuel Hugonnet wrote:
>>> zze- HUGONNET E ext RD-BIZZ a écrit :
>>>> Hi,
>>>> Is there some way to specify where is the MOJO so that Qdox doesn't 
>>>> parse my JDK1.5 classes ?
>>>> Thanks
>>>> Emmanuel
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>
>>>>
>>> Couldn't we have maven-plugin-tools-java SNAPSHOT dependant on qdox 
>>> 1.6 ?
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> I don't know how-to redefined this dependency.
> I have tried to use the dependencyManager to override the qdox 1.5 
> dependency but when I run with -X it is still using 1.5 instead of 
> 1.6.1 :(and it is still failing while parsing my enum.
> I have also tried to exclude qdox from my dependency to 
> maven-plugin-tool and added a direct dependecy to version 1.6.1 but 
> thsi is alos not working.
> Is it because this is some kind of core maven component which can't be 
> overrided ?
> I will try to build a local version of maven-plugin-tool but i am not 
> sure this will be sufficient.
> Emmanuel
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
Andrew,
As I have written here : 
http://www.nabble.com/Buiding-a-simple-plugin-%3A%28-tf2669138s177.html#a7468218, 
I have a problem to use QDox 1.6.1 to build my plugin. How do you do this ?
Thanks
Emmanuel

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: QDox, Maven Plugin and JDK 1.5

Posted by Emmanuel Hugonnet <eh...@orange-ft.com>.
Andrew Williams a écrit :
> I recommend 1.6.1, as 1.6 depends on Java5 by mistake
>
> Emmanuel Hugonnet wrote:
>> zze- HUGONNET E ext RD-BIZZ a écrit :
>>> Hi,
>>> Is there some way to specify where is the MOJO so that Qdox doesn't 
>>> parse my JDK1.5 classes ?
>>> Thanks
>>> Emmanuel
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>>
>> Couldn't we have maven-plugin-tools-java SNAPSHOT dependant on qdox 
>> 1.6 ?
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
I don't know how-to redefined this dependency.
I have tried to use the dependencyManager to override the qdox 1.5 
dependency but when I run with -X it is still using 1.5 instead of 1.6.1 
:(and it is still failing while parsing my enum.
I have also tried to exclude qdox from my dependency to 
maven-plugin-tool and added a direct dependecy to version 1.6.1 but thsi 
is alos not working.
Is it because this is some kind of core maven component which can't be 
overrided ?
I will try to build a local version of maven-plugin-tool but i am not 
sure this will be sufficient.
Emmanuel

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: QDox, Maven Plugin and JDK 1.5

Posted by Andrew Williams <an...@handyande.co.uk>.
I recommend 1.6.1, as 1.6 depends on Java5 by mistake

Emmanuel Hugonnet wrote:
> zze- HUGONNET E ext RD-BIZZ a écrit :
>> Hi,
>> Is there some way to specify where is the MOJO so that Qdox doesn't 
>> parse my JDK1.5 classes ?
>> Thanks
>> Emmanuel
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> Couldn't we have maven-plugin-tools-java SNAPSHOT dependant on qdox 1.6 ?
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: QDox, Maven Plugin and JDK 1.5

Posted by Emmanuel Hugonnet <eh...@orange-ft.com>.
zze- HUGONNET E ext RD-BIZZ a écrit :
> Hi,
> Is there some way to specify where is the MOJO so that Qdox doesn't 
> parse my JDK1.5 classes ?
> Thanks
> Emmanuel
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>
Couldn't we have maven-plugin-tools-java SNAPSHOT dependant on qdox 1.6 ?

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org