Copy zip file (not artifact) to a specified directory

2007-03-28 Thread mbernardinis
Hi, I have configured the package goal/target to construct a zip file to be built from the modules compiled jar file and a few other files contained within the maven project. Once this has successfully been packaged by calling mvn package I have to manually copy over the constructed zip file to

Re: Java Plugin Framework Support

2007-01-29 Thread mbernardinis
As promised, here is the configuration for a JPF plugin project to be built by Maven. I plan on creating an actual create:archetype to build a default project structure for JPF plugin projects but I need to read a little more into Maven to understand how to do that. Let me know if you need any

Include jar files defined in dependency in ZIP

2007-01-29 Thread mbernardinis
I have been able to create a ZIP file of my JPF module using assembly:assembly as specified in a previous post. I am now having problems adding the libraries that I have defined in the POM.xml as specified below; dependency groupIdmygroupid/groupId

RE: Include jar files defined in dependency in ZIP

2007-01-29 Thread mbernardinis
Excellent... works well... I had the problem where I was specifying the actual outputFileNameMapping but cause it was blank it was putting no dependancies in the zip file. outputFileNameMapping/outputFileNameMapping I ommitted the above line and all works fine. Mark Hi Mark, [EMAIL

Re: Java Plugin Framework Support

2007-01-28 Thread mbernardinis
Thanks for the info... I am now able to create the zip file using the assembly:assembly directive. Problem I am having though which I am sure is quite trivial... I have this file called plugin.xml that has to be in the root of the zip file... What happens, the file is added to the zip file

Java Plugin Framework Support

2007-01-27 Thread mbernardinis
I am not too experienced with Maven yet but I have created a simple JAR project POM.XML and I would like to build a zip file as follows; ../ ../plugin.xml ../classes ../classes/*.class This directory structure can be explained in more detail here; http://jpf.sourceforge.net/ Does Maven support