You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Christian Goos <Ch...@forum-informatik.ch> on 2003/09/03 11:05:36 UTC

Problem with Jar-Plugin Extension List

Hi,

Although I set the variable "maven.jar.manifest.extensions.add==true" the
extension list is never created.
So I had a look in the plugin source and replaced the original line
<j:if test="${maven.jar.manifest.extensions.add} == 'true'">

with
        <j:set var="extensionOn"
value="${maven.jar.manifest.extensions.add}" />
        <j:if test="${extensionOn=='true'}">   

After that, setting the variable to "true" creates the list.
I am really not a jelly-expert so what is the difference between the two?
Is it necessary to fix the plugin?
Thanks

Christian

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


Re: Problem with Jar-Plugin Extension List

Posted by Ben Walding <be...@walding.com>.
I believe this is a problem in jexl's handling of dotted properties - 
i.e. it doesn't.


Raise this into jira and I'll fix it asap.

Christian Goos wrote:

> Hi,
> 
> Although I set the variable "maven.jar.manifest.extensions.add==true" the
> extension list is never created.
> So I had a look in the plugin source and replaced the original line
> <j:if test="${maven.jar.manifest.extensions.add} == 'true'">
> 
> with
>         <j:set var="extensionOn"
> value="${maven.jar.manifest.extensions.add}" />
>         <j:if test="${extensionOn=='true'}">   
> 
> After that, setting the variable to "true" creates the list.
> I am really not a jelly-expert so what is the difference between the two?
> Is it necessary to fix the plugin?
> Thanks
> 
> Christian
> 
> ---------------------------------------------------------------------
> 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