Hello Sebastian,

if you select the "view source" option in your web browser, you will see this :

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

This is looking at http://repo2.maven.org/maven2/org/apache/ant/ant/1.7.0/ant-1.7.0.pom

Regards,

Antoine

Sebastian Hennebrueder wrote:
Hello,

the pom.xml in Maven (http://repo2.maven.org/maven2/org/apache/ant/ant/) doesn't look correct. Strict XML parser throw an exception on parsing.

The start should look like

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

but looks like
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>

Shall I create a bug entry?



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to