<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
+ <finalName>scanner-report-viewer-${project.version}</finalName>
+ <appendAssemblyId>false</appendAssemblyId>
<archive>
<manifest>
<mainClass>org.sonar.batch.protocol.viewer.ViewerApplication</mainClass>
private void loadReport() {
final JFileChooser fc = new JFileChooser();
- fc.setDialogTitle("Choose batch report directory");
+ fc.setDialogTitle("Choose scanner report directory");
fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
- fc.setApproveButtonText("Open batch report");
+ fc.setFileHidingEnabled(false);
+ fc.setApproveButtonText("Open scanner report");
int returnVal = fc.showOpenDialog(frame);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fc.getSelectedFile();