Reports inactive profiles in the Spring XML application contexts.
Example:
<!-- active profile 'DEV' is chosen for this application context -->
<beans profile="DEV">
<bean class="MyFactory" factory-method="createBean"/>
</beans>
<!-- content of this tag is highlighted as 'unused' -->
<beans profile="TESTS">
<bean class="MyTestFactory" factory-method="createBean"/>
</beans>
<!-- end of 'unused' section -->
</beans>