I've followed the basic instructions to integrate an ANT target with sonar.

<taskdef uri="antlib:org.sonar.ant" resource="org/sonar/ant/antlib.xml">
    <classpath path="${3pp.dir}/ant/sonar-ant-task-1.0.jar" />
</taskdef>
<property name="sonar.host.url" value="http://xsx:9000" />

<target name="sonar">
    <!-- The workDir directory is used by Sonar to store temporary files -->
    <sonar:sonar workDir="." key="org.example:example" version="0.1-SNAPSHOT" xmlns:sonar="antlib:org.sonar.ant">

      <!-- source directories (required) -->
      <sources>
        <path location="${src.dir}"/>
      </sources>

      <!-- list of properties (optional) -->
      <property key="sonar.projectName" value="tp" />
      <property key="sonar.dynamicAnalysis" value="false" />

      <!-- test source directories (optional) -->
      <tests>
        <path location="${src.dir}"/>
      </tests>

    </sonar:sonar>
  </target>

When i run the target I get this exception. Do i need to add specific xml parser jars to the target in order for it to work?

[sonar:sonar] Sonar version: 2.8

BUILD FAILED
/home/assure/projects/touchpoint/main/sonar.xml:20: javax.xml.parsers.FactoryConfigurationError: Provider com.icl.saxon.aelfred.SAXParserFactoryImpl not found
    at org.sonar.ant.SonarTask.delegateExecution(SonarTask.java:170)
    at org.sonar.ant.SonarTask.execute(SonarTask.java:151)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    at org.apache.tools.ant.Main.runBuild(Main.java:698)
    at org.apache.tools.ant.Main.startAnt(Main.java:199)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
Caused by: javax.xml.parsers.FactoryConfigurationError: Provider com.icl.saxon.aelfred.SAXParserFactoryImpl not found
    at javax.xml.parsers.SAXParserFactory.newInstance(SAXParserFactory.java:134)
    at ch.qos.logback.core.joran.event.SaxEventRecorder.recordEvents(SaxEventRecorder.java:56)
    at ch.qos.logback.core.joran.GenericConfigurator.doConfigure(GenericConfigurator.java:105)
    at ch.qos.logback.core.joran.GenericConfigurator.doConfigure(GenericConfigurator.java:76)
    at org.sonar.ant.Launcher.initLogging(Launcher.java:133)
    at org.sonar.ant.Launcher.execute(Launcher.java:59)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.sonar.ant.SonarTask.delegateExecution(SonarTask.java:167)
    ... 17 more
--- Nested Exception ---
javax.xml.parsers.FactoryConfigurationError: Provider com.icl.saxon.aelfred.SAXParserFactoryImpl not found
    at javax.xml.parsers.SAXParserFactory.newInstance(SAXParserFactory.java:134)
    at ch.qos.logback.core.joran.event.SaxEventRecorder.recordEvents(SaxEventRecorder.java:56)
    at ch.qos.logback.core.joran.GenericConfigurator.doConfigure(GenericConfigurator.java:105)
    at ch.qos.logback.core.joran.GenericConfigurator.doConfigure(GenericConfigurator.java:76)
    at org.sonar.ant.Launcher.initLogging(Launcher.java:133)
    at org.sonar.ant.Launcher.execute(Launcher.java:59)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.sonar.ant.SonarTask.delegateExecution(SonarTask.java:167)
    at org.sonar.ant.SonarTask.execute(SonarTask.java:151)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    at org.apache.tools.ant.Main.runBuild(Main.java:698)
    at org.apache.tools.ant.Main.startAnt(Main.java:199)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)

Java and ant versions

xx@xxubuntu:~/projects/xx/main$ java -version
java version "1.6.0_24"
Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
Java HotSpot(TM) 64-Bit Server VM (build 19.1-b02, mixed mode)

xx@xxubuntu:~/projects/xx/main$ ant -version
Apache Ant version 1.7.0 compiled on December 13 2006
link|improve this question

63% accept rate
I checked with my config and no extra libs are necessary. Are there any special libs in your ANT_HOME/lib. Which jdk version are you using? – oers Jun 23 '11 at 17:25
Updated to ant 1.8.2 with a clean lib directory and it worked. – emeraldjava Jun 24 '11 at 10:22
feedback

closed as too localized by Mat, Cody Gray, marc_s, Bill the Lizard Jun 26 '11 at 13:18

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.