in src/main/java/org/apache/maven/plugins/help/AllProfilesMojo.java [110:120]
private void writeProfilesDescription(StringBuilder sb, Map<String, Profile> profilesByIds, boolean active) {
for (Profile p : profilesByIds.values()) {
sb.append(" Profile Id: ").append(p.getId());
sb.append(" (Active: ")
.append(active)
.append(", Source: ")
.append(p.getSource())
.append(")");
sb.append(LS);
}
}