Deployment Assembly going haywire
First, this was all working a few days ago and then poof it stopped working. The only thing I did in the middle was an svn update and my sts settings are not in svn.
That said, whenever I publish to vFabric tc or to Tomcat 7, the published directory seems to ignore what the Deployment Assembly screen says and puts all my classes in at the root, instead of WEB-INF/classes. I've tried editing the org.eclipse.wst.common.component file by hand but that doesn't help.
org.eclipse.wst.common.component:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="dal-server">
<wb-resource deploy-path="/" source-path="/src/webapp" tag="defaultRootSource"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/resources"/>
<wb-resource deploy-path="/WEB-INF/classes/com" source-path="/src/com"/>
<property name="context-root" value="dal-server"/>
<property name="java-output-path" value="/dal-server/WEB-INF/classes"/>
</wb-module>
</project-modules>
Everything under /src/com ends up in the root. I've tried everything, including installing STS and tc from scratch and checking out a fresh copy of the code from svn.
Anybody have any ideas?