vote up 4 vote down star

I'm using Eclipse Ganymede. Everything works fine, but I have an anal-retentive yearning for a warning-free Problems tab. Right now it (correctly) complains about my ant scripts: "No grammar constraints (DTD or XML schema) detected for the document." Any way to turn that off for just those files? Ideally I'd like it to still warn me if my other schema-constrained files were missing the schema declarations.

flag

75% accept rate
1  
I haven't found a way around this either. IMHO it's a bug in Eclipse. – Matt Solnit Dec 13 '08 at 1:02
Is it possible to point it to a DTD or XML Schema which accepts anything? To fool it. I'm also bugged by this bug. – Kent Jan 26 at 2:19

1 Answer

vote up 8 vote down check

The simplest is to supply a minimal DTD to shut it up.

<!DOCTYPE project> for ant files
link|flag
Indeed, so the start of your build.xml looks like: <?xml version = '1.0' encoding = 'windows-1252'?> <!DOCTYPE project> <project name="myproject" default="make" basedir="."> I had to close + reopen the tab for the warning to go away... – Nicholas White Oct 1 at 9:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.