At 11:36 AM 8/18/2005, you wrote:
Is there a standard way [a 'best practice'] for declaring a <project>
for an XML aware editor?


... snip ...


<project
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";

xsi:noNamespaceSchemaLocation="http://maven.apache.org/maven-v3_0_0.xsd";
>

and the editor flags the noNamespaceSchemaLocation declaration as
incorrect.

I've been using this, and validating parsers have accepted it. I believe that I found this on either the users list or the Maven Jira at CodeHaus

<project xmlns="http://maven.apache.org/POM/3.0.0";
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd";>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to