protected String getOutputDirectory()

in src/main/java/org/apache/maven/plugins/changelog/ChangeLogReport.java [1574:1580]


    protected String getOutputDirectory() {
        if (!outputDirectory.isAbsolute()) {
            outputDirectory = new File(project.getBasedir(), outputDirectory.getPath());
        }

        return outputDirectory.getAbsolutePath();
    }