logger.logp(Level.INFO, "PackageAnalyserMojo", "execute", "{0}", new Object[]{sb});
String reportFilePath =
System.getProperty("WiringReportPath",
System.getProperty("java.io.tmpdir")+ File.separator + "wires.xml");
analyser.generateWiringReport(exportedPkgs, wires, new PrintStream(new FileOutputStream(new File(reportFilePath))));
System.out.println("Wiring reported can be found at " + reportFilePath);
} catch (IOException e) {
throw new MojoExecutionException("Unexpected exception", e);
}
}