private void describeMojo()

in src/main/java/org/apache/maven/plugins/help/DescribeMojo.java [447:459]


    private void describeMojo(MojoDescriptor md, StringBuilder buffer)
            throws MojoFailureException, MojoExecutionException {
        buffer.append("Mojo: '").append(md.getFullGoalName()).append("'");
        buffer.append(LS);

        describeMojoGuts(md, buffer, detail);
        buffer.append(LS);

        if (!detail) {
            buffer.append("For more information, run 'mvn help:describe [...] -Ddetail'");
            buffer.append(LS);
        }
    }