Created
April 28, 2015 12:20
sonar build.xml file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="Simple Java Project analyzed with the Sonar Ant Task" default="all" basedir="." xmlns:sonar="antlib:org.sonar.ant"> | |
<!-- ========= Define the main properties of this project ========= --> | |
<property name="src.dir" value="src" /> | |
<property name="build.dir" value="target" /> | |
<property name="classes.dir" value="${build.dir}/classes" /> | |
<property name="extlib.dir" value="ext-lib"/> | |
<!-- Define the Sonar properties --> | |
<property name="sonar.projectKey" value="org.codehaus.sonar:example-java-ant" /> | |
<property name="sonar.projectName" value="Simple Java Project analyzed with the Sonar Ant Task" /> | |
<property name="sonar.projectVersion" value="1.0" /> | |
<property name="sonar.language" value="java" /> | |
<property name="sonar.sources" value="src" /> | |
<property name="sonar.binaries" value="target" /> | |
<property name="sonar.sourceEncoding" value="UTF-8" /> | |
<property name="sonar.scm.disabled" value="True" /> | |
<!-- Add your basic Sonar configuration below: sonar.jdbc.url, sonar.jdbc.username, etc. properties --> | |
<!-- | |
<property name="sonar.jdbc.url" value="jdbc:..." /> | |
<property name="sonar.jdbc.username" value="..." /> | |
<property name="sonar.jdbc.password" value="..." /> | |
--> | |
<!-- ========= Define "regular" targets: clean, compile, ... ========= --> | |
<target name="clean"> | |
<delete dir="${build.dir}" /> | |
</target> | |
<path id="local.classpath"> | |
<fileset dir="${extlib.dir}"> | |
<include name="**/*.jar"/> | |
</fileset> | |
</path> | |
<target name="init"> | |
<mkdir dir="${build.dir}" /> | |
<mkdir dir="${classes.dir}" /> | |
</target> | |
<target name="compile" depends="init"> | |
<javac srcdir="${src.dir}" destdir="${classes.dir}" fork="true" debug="true" includeAntRuntime="false"> | |
<classpath refid="local.classpath"/> | |
</javac> | |
</target> | |
<!-- ========= Define Sonar target ========= --> | |
<target name="sonar" depends="compile"> | |
<taskdef uri="antlib:org.sonar.ant" resource="org/sonar/ant/antlib.xml"> | |
<!-- Update the following line, or put the "sonar-ant-task-*.jar" file in your "$HOME/.ant/lib" folder --> | |
<classpath path="E:/rivetsys/tools/ant/apache-ant-1.8.3/lib/sonar-ant-task-*.jar" /> | |
</taskdef> | |
<!-- Execute Sonar --> | |
<sonar:sonar /> | |
</target> | |
<!-- ========= The main target "all" ========= --> | |
<target name="all" depends="clean,compile,sonar" /> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment