print-warnings task for Scala 2.10+ to avoid needing to rerun 'compile' to see deprecation/unchecked warnings

This commit is contained in:
Mark Harrah
2012-03-17 19:31:55 -04:00
parent 9049c6cb68
commit 1cbb7ce93c
12 changed files with 156 additions and 35 deletions
@@ -24,4 +24,7 @@ public interface AnalysisCallback
public void endSource(File sourcePath);
/** Called when the public API of a source file is extracted. */
public void api(File sourceFile, xsbti.api.SourceAPI source);
/** Provides problems discovered during compilation. These may be reported (logged) or unreported.
* Unreported problems are usually unreported because reporting was not enabled via a command line switch. */
public void problem(Position pos, String msg, Severity severity, boolean reported);
}