下面的几行是我的ant构建文件的开始,当我尝试用它实现sonar时,它显示了以下错误。
属性"的值;xmlns:sonar";与一个元素类型"相关联";项目";不得包含"<"性格
<project name="DokLink" default="all" basedir="." xmlns:sonar="antlib:org.sonar.ant>
<description> Build the DevEnvExample, to illustrate how DevEnv works </description>
您向ANT提交了一个无效的XML文件。您缺少Sonar URI:的结束引号
$ xmllint build.xml
..
..
build.xml:3: namespace error : xmlns:sonar: 'antlib:org.sonar.ant> ' is not a valid URI
..
..
以下是已更正的XML文件:
<project name="DokLink" default="all" basedir="." xmlns:sonar="antlib:org.sonar.ant">
<description> Build the DevEnvExample, to illustrate how DevEnv works </description>
</project>