Odi's astoundingly incomplete notes
New entries | CodeSetting sonar.libraries from an Ant classpath
Sonar Ant task properties use the comma character to separate paths. So a little trick is necessary to integrate that with existing path resources:
<path id="myclasspath"> <pathelement path="lib/mylib.jar"/> </path> <pathconvert property="sonar.libraries" pathsep="," refid="myclasspath"/>
Add comment