@@ -569,7 +569,7 @@ private boolean preCheck() throws MojoExecutionException {
569
569
}
570
570
571
571
if (!settings .isInteractiveMode ()) {
572
- getLog ().error ("Maven is not attempt to interact with the user for input. "
572
+ getLog ().error ("Maven is not interacting with the user for input. "
573
573
+ "Verify the <interactiveMode/> configuration in your settings." );
574
574
return false ;
575
575
}
@@ -579,11 +579,12 @@ private boolean preCheck() throws MojoExecutionException {
579
579
getLog ().warn ("" );
580
580
getLog ().warn ("All warranties with regard to this Maven goal are disclaimed!" );
581
581
getLog ().warn ("The changes will be done directly in the source code." );
582
- getLog ().warn ("The Maven Team strongly recommends the use of a SCM software BEFORE executing this goal." );
582
+ getLog ().warn (
583
+ "The Maven Team strongly recommends committing the code to source code management BEFORE executing this goal." );
583
584
getLog ().warn ("" );
584
585
585
586
while (true ) {
586
- getLog ().info ("Are you sure to proceed? [Y]es [N]o" );
587
+ getLog ().info ("Are you sure you want to proceed? [Y]es [N]o" );
587
588
588
589
try {
589
590
String userExpression = inputHandler .readLine ();
@@ -592,7 +593,7 @@ private boolean preCheck() throws MojoExecutionException {
592
593
break ;
593
594
}
594
595
if (JavadocUtil .equalsIgnoreCase (userExpression , "N" , "No" )) {
595
- getLog ().info ("No changes in your sources occur ." );
596
+ getLog ().info ("OK, I will not change your source code ." );
596
597
return false ;
597
598
}
598
599
} catch (IOException e ) {
@@ -737,9 +738,9 @@ private void parseClirrTextOutputFile(File clirrTextOutputFile) throws IOExcepti
737
738
}
738
739
}
739
740
if (clirrNewClasses .isEmpty () && clirrNewMethods .isEmpty ()) {
740
- getLog ().info ("Clirr NOT found API differences." );
741
+ getLog ().info ("Clirr did NOT find any API differences." );
741
742
} else {
742
- getLog ().info ("Clirr found API differences, i.e. new classes/ interfaces or methods." );
743
+ getLog ().info ("Clirr found API differences; e.g. new classes, interfaces, or methods." );
743
744
}
744
745
}
745
746
0 commit comments