Made the default for the --strict-publish argument 'true', so the warning are for all to see, unless switched off with --strict-publish=false. Since we're down to the low tens of warnings, it's worth to keep them showing so we eventually look into making them go away.
Signed-off-by: Erik de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/f92dd51e Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/f92dd51e Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/f92dd51e Branch: refs/heads/develop Commit: f92dd51e9dbdb9b0ed4d9ccab236ac39eda2bb20 Parents: 7d26acf Author: Erik de Bruin <[email protected]> Authored: Sat Nov 16 16:04:25 2013 +0100 Committer: Erik de Bruin <[email protected]> Committed: Sat Nov 16 16:04:25 2013 +0100 ---------------------------------------------------------------------- .../flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/f92dd51e/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java ---------------------------------------------------------------------- diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java b/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java index 4e04254..ae6a16c 100644 --- a/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java +++ b/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java @@ -109,7 +109,7 @@ public class JSGoogConfiguration extends JSConfiguration // 'strict-publish' // - private boolean strictPublish; + private boolean strictPublish = true; public boolean getStrictPublish() {
