Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,12 @@ public void execute()

compilerConfiguration.setFailOnWarning( failOnWarning );

if ( failOnWarning && !showWarnings )
{
getLog().warn( "The property failOnWarning is set to true, but showWarnings is set to false." );
getLog().warn( "With compiler's warnings silenced the failOnWarning has no effect." );
}

compilerConfiguration.setShowDeprecation( showDeprecation );

compilerConfiguration.setSourceVersion( getSource() );
Expand Down