protected void executeReport()

in maven-jxr-plugin/src/main/java/org/apache/maven/plugin/jxr/AbstractJxrReport.java [377:389]


    protected void executeReport(Locale locale) throws MavenReportException {
        // init some attributes -- TODO (javadoc)
        init();

        // determine version of templates to use
        setJavadocTemplatesVersion();

        try {
            createXref(locale, getPluginReportOutputDirectory(), constructSourceDirs());
        } catch (JxrException | IOException e) {
            throw new MavenReportException("Error while generating the HTML source code of the project.", e);
        }
    }