private void executeExternalTool()

in src/it/setup-reporting-plugin/src/main/java/org/apache/maven/reporting/its/custom/ExternalReport.java [85:95]


    private void executeExternalTool( File destDir )
        throws IOException
    {
        getLog().info( "Running external tool to " + destDir );

        // demo implementation, to be replaced with effective tool
        destDir.mkdirs();

        File reportFile = new File( destDir, "report.html" );
        FileUtils.fileWrite( reportFile, "UTF-8", "<html><body><h1>External Report</h1></body></html>" );
    }