I dont understand XML, But Looking the Tutorial, i created the ant builfile -> projecBuilder.xml in the web application Project in Eclipse (GWT) With help of projectBuilder.xml i create a jar file for all the java files in client, shared , server.
Now i want to add Sonar as a target in projectbuilder.xml.
I have dowloaded sonar 2.12, sonar ant task. both are in in Drive D:/
What i have done :
<?xml version="1.0" encoding="UTF-8"?>
<target name="create_jars" depends='create_jars_client,create_jars_server,
create_jars_shared,sonar' />
<!--Client-->
<target name="create_jars_client">
<echo message = 'Remove Existing Jars'/>
<delete file="com/example/TryAnt/Client/TryAnt.jar" />
<echo message='Create new jars' />
<jar basedir='${classes}' jarfile="com/example/TryAnt/Client/TryAnt.jar"
includes ='WEB-INF\classes\com\example\TryAnt\client\TryAnt.class'/>
</target>
<!--... Similar more code for creating jar-->
i used above link link to solve further .
i copied paste the code but it show me error. Please tell me what are the things to be changed.
please any one can explain me how to analyse code in sonar by using ant build file in a very simple language.