On 11/23/2011 01:10 PM, Karl Heinz Marbaise wrote: > Hi to all, > > i have a larger structure of modules which built a multi-module-build which > contains (an excerpt of my structure) the following two modules where my > problem is focused on: > > root > +-- mod-war > +-- mod-it > > where the mod-war obviously contains the WAR module with the web-application > (packaging war) and the mod-it contains the integration tests. So my problem > is that i can't use a Class which is defined in the mod-war package under > src/main/java/..../ClassName.java in my Integration test > (src/test/java/XYZIT.java)....
This doesn't directly address your question but the .war module should not even have sources IMHO. I always structure my projects so that the war module only has the direct stuff required for the .war (e.g. web.xml and friends) but nothing else. -dirk --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
