Nutch - 无法从资源org / sonar / ant / antlib.xml加载定义

时间:2017-04-18 10:25:53

标签: java ubuntu ant nutch

我正在通过官方指南学习Nutch。因此,当我在bin目录中运行Ant时,它会显示:

  

“无法从资源org/sonar/ant/antlib.xml加载定义。它   无法找到。“

我花了很多时间在谷歌解决它,但我失败了。我的操作系统是Ubuntu16.04。

enter image description

1 个答案:

答案 0 :(得分:6)

尝试在build.xml中评论所有这些内容:

  <!-- ================================================================== -->
  <!-- SONAR targets                                                      -->
  <!-- ================================================================== -->

  <!-- Define the Sonar task if this hasn't been done in a common script -->
  <taskdef uri="antlib:org.sonar.ant" resource="org/sonar/ant/antlib.xml">
    <classpath path="${ant.library.dir}"/>
    <classpath path="${mysql.library.dir}"/>
  </taskdef>

  <!-- Add the target -->
  <target name="sonar" description="--> run SONAR analysis">

    <!-- list of mandatory source directories (required) -->
    <property name="sonar.sources" value="${src.dir}"/>

    <!-- list of properties (optional) -->
    <property name="sonar.projectName" value="Nutch Trunk 1.4 Sonar Analysis" />
    <property name="sonar.binaries" value="${build.dir}/classes" />
    <property name="sonar.binaries" value="${build.dir}/plugins" />
    <property name="sonar.tests" value="${test.src.dir}" />

    <sonar:sonar workDir="${base.dir}" key="org.apache.nutch:trunk" 
     version="1.4-SNAPSHOT" xmlns:sonar="antlib:org.sonar.ant"/>
  </target>

以这种方式,它应该工作。