This blog has moved to
http://blog.matthias-reining.com

Die bestehenden Artikel bleiben vorerst alle bei blogspot. Neue Artikel veröffentliche ich allerdings nur noch auf http://blog.matthias-reining.com

Donnerstag, 17. September 2009

Eclipse – build.xml | No grammer constraints (DTD or XML schema) detected for the document

Ab eclipse ganymede kommt es im ANT Script (build.xml) zu folgende Fehlermeldunge „No grammer constraints (DTD or XML schema) detected for the document“
Folgende Zeile schafft hier abhilfe:


<!DOCTYPE xsl:stylesheet [&lz;!ENTITY bullet "•"> <!ENTITY nbsp " ">]>


Das ganze schaut dann im Context so aus:
<?xml version="1.0" encoding="UTF-8" standalone="yes" >
<!DOCTYPE xsl:stylesheet [&lz;!ENTITY bullet "•"> <!ENTITY nbsp " ">]>
<project …