Can you think of an elegant way to determine the package of a JAVA-class in SonarQube using the REST-API?
This snippet
http://myhost:9000/sonar/api/resources?resource=my.project%3Asimple.analysis&depth=-1&scopes=FIL
delivers a result containing
<lname>my/project/src/com/tobi/my/heros/SchmidtsKatze.java</lname>
I could XSLT it to com/tobi/my/heros/, but I wonder if there is a propper way? What do you think?