I use maven-war-plugin to build WAR, and I need to exclude several WAR classes from web-inf/classes (that's GWT classes, they shouldn't get to server deployment).
How can I do it in maven? I tried "warSourceExcludes", "packagingExcludes" with no success.
Any simple and creative solution in maven is acceptable, I need it for a test project.
thanks
clientandserver; and possibly a thirdsharedmodule, which bothclientandserverdepend on. You'd use gwt-maven-plugin either inclient(with the maven-assembly-plugin to produce a ZIP used as a war overlay inserver), or inserver(which would then depend onclientwith scope=provided so thatclient.jarisn't included in the war; I guess you could also putclientas a dependency of gwt-maven-plugin instead) – Thomas Broyer Aug 31 '11 at 15:21