http://www.israfil.net/projects/mojo/maven-flex2-plugin/examples/simple_war_project.html
As to docs, when you talk about the site, do you mean the googlecode
site, or the project documentation site. The latter is at http://www.israfil.net/projects/mojo/maven-flex2-plugin/
and is generated afresh for each release, and has examples and
plugin parameters, etc.
Christian.
So you're saying that each plugin's namespace needs to be the
directory in which the .swf files goes? Let me ask a different way -
what things are different about compiling and deploying a module from
any-old swf?
Christian.
But I have to start somewhere, conceptually, and usually I find that a
file is an artifact, unless someone can tell me a good reason otherwise.
The problem is that classifiers aren't really suited for "multiple-
file-output" artifacts, since they're more like different views of the
same artifact. (source, javadoc, etc.)
Having said that, I think I need to whip up a sample module project to
see how it plays out in general use... unless someone has a good
sample project with modules.
As to assemblies: an assembly isn't an artifact. It's an archive of
resources, including dependent artifacts (if desired). There is still
one artifact for that project that uses the assembly plugin (even if
it's only metadata .pom file). You can assemble multiple projects
into a zip file if you like, but that assembly doesn't have a groupId,
artifactId, and version that uniquely identifies it by definition.
You can have a gazillion assemblies generated by your project, but you
still only have one artifact.
Christian.