Hi,
I am currently thinking how I can simplify the handling of the JS and SWC dependencies. Now I thought that there are some libs that only have a SWC part, some only have a JS part and some have both. Now what about me creating 3 different packaging types for maven: js, swc and jswc This would atomatically kick in the needed plugins at the right time. Currently I solve the only js or only swc library problem by manually forcing some parts to be skipped ... this is really ugly. Being able to select a packaging type of "js" or "swc" for only-one-type libs and "jswc" for libs containing both would simplify things. When referencing these types of libraries you would only use the old "swc" only for the pure-swc libs and start using the "js" and "jswc" for the other types. This way it should be transparent to the user what type of library he's referencing. What do you think? Chris