Sonar mit Ant und Jacoco

Kleiner codeschnipsel zum Markdown testen <target name="sonar.ant"> <!-- list of mandatories Sonar properties --> <property name="sonar.sources" value="${src.dir}" /> <!-- list of source directories separated by a comma --> <!-- list of optional Sonar properties --> <property name="sonar.binaries" value="${build.classes.dir}" /> <!--list of directories which contain for example the Java bytecode --> <property name="sonar.tests" value="${test.src.dir}" /> <!--list...

Scroll to top