Eclipse:3.1.1
MyEclipse: 4.0.3
FWIW, I’m getting this error (“cvc-elt.1: Cannot find the declaration of element ‘project’. “) with a project file derived from Matt Raible’s Equinox project — it uses the Maven2 dependency ant tasks:
<?xml version=”1.0″?>
<project name=”riskapp” basedir=”.” default=”help” xmlns:artifact=”urn:maven-artifact-ant”>
In addition, even after marking the build.xml “derived”, I get annoying warnings regarding maven plugin derived properties:
“Reference beandoc.classpath not found.” which corresponds to:
<target name=”beandoc” description=”Generate beandoc reports”>
<artifact:dependencies pathId=”beandoc.classpath”>
<remoteRepository url=”http://static.appfuse.org/repository”/>
<dependency groupId=”org.springframework” artifactId=”beandoc” version=”0.7.0″/>
</artifact:dependencies>
<taskdef name=”beandoc” classname=”org.springframework.beandoc.client.AntTask”>
<classpath refid=”beandoc.classpath”/>
</taskdef>
can I disable those warnings too?