Change order of subsections

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@354629 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2005-12-07 00:19:31 +00:00
parent 5b315d0002
commit 2d745d89dc

View File

@ -42,6 +42,18 @@
to run, you should try to validate your pom with an independent to run, you should try to validate your pom with an independent
xml validation tool first. xml validation tool first.
</p> </p>
<subsection name="Namespace">
<p>
In order to be valid, your <code>project.xml</code> file needs
to include a namespace declaration in the project root element:
</p>
<source><![CDATA[<project xmlns="http://maven.apache.org/POM/3.0.0">]]></source>
<p>
or
</p>
<source><![CDATA[<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">]]></source>
</subsection>
<subsection name="Required elements"> <subsection name="Required elements">
<p> <p>
The validation routine works differently for stand-alone The validation routine works differently for stand-alone
@ -186,18 +198,6 @@
</tr> </tr>
</table> </table>
</subsection> </subsection>
<subsection name="Namespace">
<p>
In order to be valid, your <code>project.xml</code> file needs
to include a namespace declaration in the project root element:
</p>
<source><![CDATA[<project xmlns="http://maven.apache.org/POM/3.0.0">]]></source>
<p>
or
</p>
<source><![CDATA[<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">]]></source>
</subsection>
</section> </section>
</body> </body>
</document> </document>