On Mon, Aug 17, 2009 at 7:04 AM, Skinner Chad<[email protected]> wrote: > I have a project called widgets that currently is a parent pom for a number > of modules that are individual custom gwt widgets. Can anyone tell me if it > is possible to have this project built as a jar that includes the exploded > contents of the individual child module jar contents. (Meaning I don't want > a jar in a jar, but rather a jar with the combined packages from the child > modules? > > Likewise what do I need to look into in order to have the gwt.xml file for > this parent project generated from the contents of the jar. For example I > need to add entries to the parents gwt.xml file to reference the individual > module gwt.xml files.
Rather than do this in the parent project, I would do it in a new module. If it's a GWT project, there might already be a plugin to do what you need. Or you can write the gwt.xml file by hand and use the assembly plugin to create the combined jar. (The jar-with-dependencies descriptor might work.) -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
