Re: excluding files from jar doesn't work completely well - maven-jar-plugin 2.2

2008-03-11 Thread Olivier Lamy
Post an issue in jira. And attach a simple project test case to reproduce the issue. Thanks, -- Olivier 2008/3/11, Patrizio Munzi [EMAIL PROTECTED]: Hi All, I'm trying to exclude some files from the built jar by using the maven-jar-plugin exclude feature. Here's my configuration:

Re: excluding files from jar doesn't work completely well - maven-jar-plugin 2.2

2008-03-11 Thread Patrizio Munzi
Thanks for your answer, so is it a real problem...? Thanks Olivier Lamy wrote: Post an issue in jira. And attach a simple project test case to reproduce the issue. Thanks, -- Olivier 2008/3/11, Patrizio Munzi [EMAIL PROTECTED]: Hi All, I'm trying to exclude some files from the built

Re: excluding files from jar doesn't work completely well - maven-jar-plugin 2.2

2008-03-11 Thread [EMAIL PROTECTED]
It doesn't surprise me too much that the maven-jar-plugin still creates empty directories even when all files that were in that directory have been excluded. I haven't checked myself, but it sounds like a situation that the plugin author could easily have overlooked. But it doesn't cause any

Re: excluding files from jar doesn't work completely well - maven-jar-plugin 2.2

2008-03-11 Thread Patrizio Munzi
Yes, you're right. Not a so heavy issue. Just a correctness remark. I've already filed a jira issue for it with simple project test case. Regards, Patrizio [EMAIL PROTECTED] wrote: It doesn't surprise me too much that the maven-jar-plugin still creates empty directories even when all

Re: Excluding files from JAR with maven-jar-plugin 2.2-SNAPSHOT failed

2008-01-12 Thread Olivier Lamy
Hi, Can you try with : excludes exclude**/*.xsd/exclude /excludes -- Olivier 2008/1/12, supareno [EMAIL PROTECTED]: Hello guys i read the previous threads about exclusion with interest because i am always confronted with the excludes problem i followed all

Re: Excluding files from JAR with maven-jar-plugin 2.2-SNAPSHOT failed

2008-01-12 Thread Jochen Wiedmann
On Jan 12, 2008 3:59 PM, supareno [EMAIL PROTECTED] wrote: [INFO] Failed to configure plugin parameters for: org.apache.maven.plugins:maven-jar-plugin:2.2-SNAPSHOT (found static expression: '**/*.xsd' which may act as a default value). Configuration problem on your side, use

Re: Excluding files from JAR with maven-jar-plugin 2.2-SNAPSHOT failed

2008-01-12 Thread Dennis Lundberg
The excludes configuration is a set of things to exclude. It needs to be configured like this: excludes exclude**/*.xsd/exclude /excludes supareno wrote: Hello guys i read the previous threads about exclusion with interest because i am always confronted with the excludes problem i

Re: Excluding files from JAR with maven-jar-plugin 2.2-SNAPSHOT failed

2008-01-12 Thread supareno
Thanks Olivier (and Jochen and Dennis), it is now building without any error but the xsd files is always here i'm gonna try with Ant task to if it is working ! regards Hi, Can you try with : excludes exclude**/*.xsd/exclude /excludes -- Olivier 2008/1/12,

Re: Excluding files from JAR with maven-jar-plugin 2.2-SNAPSHOT failed

2008-01-12 Thread Olivier Lamy
The excludes field in the jar plugin is to exclude content from ${project.build.outputDirectory} not to exclude resources. In order to exclude resources have a look here [1]. I don't really understand your jar plugin configuration. Can you try a more simple : plugin

Re: Excluding files from JAR with maven-jar-plugin 2.2-SNAPSHOT failed

2008-01-12 Thread supareno
thanks for your Olivier , it works now! i forgot to make a clean in the target folder so that's why the files were always present ! regards The excludes field in the jar plugin is to exclude content from ${project.build.outputDirectory} not to exclude resources. In order to exclude resources

Re: Excluding files from JAR

2008-01-11 Thread amit kumar
Hi, Sorry for incomplete information about the problem. I used delete task , and it is working now. Did not try the snapshot jar plugin yet. Thanks and regards, Amit Kumar On Jan 11, 2008 5:46 AM, Wayne Fay [EMAIL PROTECTED] wrote: I don't think Simon is telling you to use Ant's jar command --

Re: Excluding files from JAR

2008-01-10 Thread Olivier Lamy
Hi, No you don't miss something here. It's a know issue [1] and it's fixed in trunk. You can try last snapshot to test the fix. -- Olivier [1] http://jira.codehaus.org/browse/MJAR-30 2008/1/10, amit kumar [EMAIL PROTECTED]: HI, Just like WAR can I as well exclude some files from JAR builds as

Re: Excluding files from JAR

2008-01-10 Thread Simon Kitching
amit kumar [EMAIL PROTECTED] schrieb: Just like WAR can I as well exclude some files from JAR builds as well? Not until the next version of the jar plugin is released. For the moment, the usual workaround is to use the antrun plugin to remove the unwanted files before the jar is created.

Re: Excluding files from JAR

2008-01-10 Thread amit kumar
Hi, I have downloaded the patches from the link mentioned by you. But I don't know how to apply them. regards, Amit On Jan 10, 2008 6:29 PM, Olivier Lamy [EMAIL PROTECTED] wrote: Hi, No you don't miss something here. It's a know issue [1] and it's fixed in trunk. You can try last snapshot

Re: Excluding files from JAR

2008-01-10 Thread Olivier Lamy
Nothing to patch locally. The snapshot with this patch is available in snapshot plugin repositories. In order to test this have a look here [1] (first section How to include the plugin snapshot repositories as part of your build). If you have any issues let us know, Thanks, -- Olivier [1]

Re: Excluding files from JAR

2008-01-10 Thread amit kumar
Hi Simon, Being totally unaware of ANT although I tried but of no use. I used this with google's help plugin artifactIdmaven-antrun-plugin/artifactId executions execution phaseprepare-package/phase

Re: Excluding files from JAR

2008-01-10 Thread Wayne Fay
I don't think Simon is telling you to use Ant's jar command -- instead he is suggesting that you use Ant's delete task to physically remove the unwanted files out of /target/ before allowing Maven to do its own packaging step. (Right, Simon?) You would probably want to bind this to prepare-package