My web project CleanSystemsWeb/.settings/org.jboss.tools.jst.web.xml contains this
<?xml version=”1.0″ encoding=”UTF-8″?>
<file-systems model-entity=”FileSystems” workspace-home=”./WebRoot/WEB-INF”>
<file-system NAME=”CleanSystemsWeb” location=”%eclipse.project%” model-entity=”FileSystemFolder”/>
<file-system NAME=”src” location=”%workspace.home%/../../src” model-entity=”FileSystemFolder”/>
<web model-entity=”JstWeb”/>
</file-systems>
while as a Maven2 project, it should be something like :
<?xml version=”1.0″ encoding=”UTF-8″?>
<file-systems model-entity=”FileSystems” workspace-home=”./src/main/webapp”>
<file-system NAME=”CleanSystemsWeb” location=”%eclipse.project%” model-entity=”FileSystemFolder”/>
<file-system NAME=”src” location=”%workspace.home%/../../src” model-entity=”FileSystemFolder”/>
<web model-entity=”JstWeb”/>
</file-systems>
How do I change this ?
\T,