Re: Problem with Jar-Plugin Extension List

2003-09-04 Thread Emmanuel Venisse
I fixed it in cvs head.

The correct line is 

- Original Message - 
From: "Christian Goos" <[EMAIL PROTECTED]>
To: "'Maven Users List'" <[EMAIL PROTECTED]>
Sent: Thursday, September 04, 2003 2:04 PM
Subject: RE: Problem with Jar-Plugin Extension List


> Thanks, I will do. But I don't know how yet.
> Are there some guidelines to follow (project, issue type, etc.),
> when raising an issue.
>
> 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
> > 
> >
> > with
> >  > value="${maven.jar.manifest.extensions.add}" />
> > 
> >
> > 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: [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]
>
> _
> Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
> http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France

_
Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France


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



RE: Problem with Jar-Plugin Extension List

2003-09-04 Thread Christian Goos
Thanks, I will do. But I don't know how yet.
Are there some guidelines to follow (project, issue type, etc.), 
when raising an issue.

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
> 
> 
> with
>  value="${maven.jar.manifest.extensions.add}" />
>
> 
> 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: [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: Problem with Jar-Plugin Extension List

2003-09-03 Thread Ben Walding
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

with

value="${maven.jar.manifest.extensions.add}" />
   

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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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


Re: Problem with Jar-Plugin

2003-09-03 Thread Emmanuel Venisse
Done. I'll also fix it for ejb-plugin.

- Original Message - 
From: "Christian Goos" <[EMAIL PROTECTED]>
To: "'Maven Users List'" <[EMAIL PROTECTED]>
Sent: Wednesday, September 03, 2003 10:58 AM
Subject: RE: Problem with Jar-Plugin


this should also be fixed for the war-plugin?

-Original Message-
From: Emmanuel Venisse [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 28, 2003 2:17 PM
To: Maven Users List
Subject: Re: Problem with Jar-Plugin

maven.jar.index is a property for the rc1 release.
If you want to use it, you must download the plugin from cvs head
(http://cvs.apache.org/viewcvs.cgi/maven/src/plugins-build/jar/)

- Original Message - 
From: "Christian Goos" <[EMAIL PROTECTED]>
To: "'Maven Users List'" <[EMAIL PROTECTED]>
Sent: Thursday, August 28, 2003 1:53 PM
Subject: Problem with Jar-Plugin


> Hi,
>
> I am using Maven 1.0 beta 10 and had a problem with the JAR-Plugin.
>
> I could not run the jar I created and found that the jar-index that
> was created by the plugin caused the problem.
> Even when setting maven.jar.index to false it still created the index.
> In the plugin.jelly the index is always set to "true" but it should be
> set to false instead (this is what the plugin-documentation says)
>
>
>
> Christian
>
>jarfile="${maven.build.dir}/${maven.final.name}.jar"
>   basedir="${maven.build.dest}"
>   index="true"
>   excludes="${maven.jar.excludes}">
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
> _
> Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
> http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France

_
Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France


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

_
Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France

_
Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France


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



Problem with Jar-Plugin Extension List

2003-09-03 Thread Christian Goos
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


with

   

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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Problem with Jar-Plugin

2003-09-03 Thread Christian Goos
this should also be fixed for the war-plugin?

-Original Message-
From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 28, 2003 2:17 PM
To: Maven Users List
Subject: Re: Problem with Jar-Plugin

maven.jar.index is a property for the rc1 release.
If you want to use it, you must download the plugin from cvs head
(http://cvs.apache.org/viewcvs.cgi/maven/src/plugins-build/jar/)

- Original Message - 
From: "Christian Goos" <[EMAIL PROTECTED]>
To: "'Maven Users List'" <[EMAIL PROTECTED]>
Sent: Thursday, August 28, 2003 1:53 PM
Subject: Problem with Jar-Plugin


> Hi,
>
> I am using Maven 1.0 beta 10 and had a problem with the JAR-Plugin.
>
> I could not run the jar I created and found that the jar-index that
> was created by the plugin caused the problem.
> Even when setting maven.jar.index to false it still created the index.
> In the plugin.jelly the index is always set to "true" but it should be
> set to false instead (this is what the plugin-documentation says)
>
>
>
> Christian
>
>jarfile="${maven.build.dir}/${maven.final.name}.jar"
>   basedir="${maven.build.dest}"
>   index="true"
>   excludes="${maven.jar.excludes}">
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
> _
> Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
> http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France

_
Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France


-
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: Problem with Jar-Plugin

2003-08-29 Thread dion
Christian,

we released the update jar plugin so that you can install it on beta 10 
and fix this issue.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/


Christian Goos <[EMAIL PROTECTED]> wrote on 28/08/2003 
09:53:10 PM:

> Hi,
> 
> I am using Maven 1.0 beta 10 and had a problem with the JAR-Plugin.
> 
> I could not run the jar I created and found that the jar-index that
> was created by the plugin caused the problem.
> Even when setting maven.jar.index to false it still created the index. 
> In the plugin.jelly the index is always set to "true" but it should be
> set to false instead (this is what the plugin-documentation says)
> 
> 
> 
> Christian
> 
>jarfile="${maven.build.dir}/${maven.final.name}.jar"
>   basedir="${maven.build.dest}"
>   index="true"
>   excludes="${maven.jar.excludes}">
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


Re: Problem with Jar-Plugin

2003-08-28 Thread Emmanuel Venisse
maven.jar.index is a property for the rc1 release.
If you want to use it, you must download the plugin from cvs head
(http://cvs.apache.org/viewcvs.cgi/maven/src/plugins-build/jar/)

- Original Message - 
From: "Christian Goos" <[EMAIL PROTECTED]>
To: "'Maven Users List'" <[EMAIL PROTECTED]>
Sent: Thursday, August 28, 2003 1:53 PM
Subject: Problem with Jar-Plugin


> Hi,
>
> I am using Maven 1.0 beta 10 and had a problem with the JAR-Plugin.
>
> I could not run the jar I created and found that the jar-index that
> was created by the plugin caused the problem.
> Even when setting maven.jar.index to false it still created the index.
> In the plugin.jelly the index is always set to "true" but it should be
> set to false instead (this is what the plugin-documentation says)
>
>
>
> Christian
>
>jarfile="${maven.build.dir}/${maven.final.name}.jar"
>   basedir="${maven.build.dest}"
>   index="true"
>   excludes="${maven.jar.excludes}">
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
> _
> Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
> http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France

_
Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France


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



Problem with Jar-Plugin

2003-08-28 Thread Christian Goos
Hi,

I am using Maven 1.0 beta 10 and had a problem with the JAR-Plugin.

I could not run the jar I created and found that the jar-index that
was created by the plugin caused the problem.
Even when setting maven.jar.index to false it still created the index. 
In the plugin.jelly the index is always set to "true" but it should be
set to false instead (this is what the plugin-documentation says)



Christian




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