Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 2C696200B2F for ; Sun, 3 Jul 2016 16:15:33 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2AF69160A6B; Sun, 3 Jul 2016 14:15:33 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 764A7160A50 for ; Sun, 3 Jul 2016 16:15:32 +0200 (CEST) Received: (qmail 26535 invoked by uid 500); 3 Jul 2016 14:15:31 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 26527 invoked by uid 99); 3 Jul 2016 14:15:31 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jul 2016 14:15:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 89BEEE0278; Sun, 3 Jul 2016 14:15:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cdutz@apache.org To: commits@flex.apache.org Message-Id: <3bc6cba7ee4d4d8eade8552c7adcccef@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-falcon] [refs/heads/develop] - - Fixed the build issues related to externs - Commented in the code to fail the build in case of build errors in the JS part - Streamlined the configuration of the flexjs-maven-plugin - Updated the error f Date: Sun, 3 Jul 2016 14:15:31 +0000 (UTC) archived-at: Sun, 03 Jul 2016 14:15:33 -0000 Repository: flex-falcon Updated Branches: refs/heads/develop b0b010f72 -> c0e8725af - Fixed the build issues related to externs - Commented in the code to fail the build in case of build errors in the JS part - Streamlined the configuration of the flexjs-maven-plugin - Updated the error findings in comments of the poms - Turned on "debug" as default (overridable by setting "-Dflex.debug=false" Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/c0e8725a Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/c0e8725a Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/c0e8725a Branch: refs/heads/develop Commit: c0e8725af762655ad79eef3315e6ef9b4ad91c95 Parents: b0b010f Author: Christofer Dutz Authored: Sun Jul 3 16:15:08 2016 +0200 Committer: Christofer Dutz Committed: Sun Jul 3 16:15:08 2016 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/flex/maven/flexjs/BaseMojo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/c0e8725a/flexjs-maven-plugin/src/main/java/org/apache/flex/maven/flexjs/BaseMojo.java ---------------------------------------------------------------------- diff --git a/flexjs-maven-plugin/src/main/java/org/apache/flex/maven/flexjs/BaseMojo.java b/flexjs-maven-plugin/src/main/java/org/apache/flex/maven/flexjs/BaseMojo.java index f032d99..53270ac 100644 --- a/flexjs-maven-plugin/src/main/java/org/apache/flex/maven/flexjs/BaseMojo.java +++ b/flexjs-maven-plugin/src/main/java/org/apache/flex/maven/flexjs/BaseMojo.java @@ -249,7 +249,7 @@ public abstract class BaseMojo protected void handleExitCode(int exitCode) throws MojoExecutionException { if(exitCode != 0) { - //throw new MojoExecutionException("There were errors during the build."); + throw new MojoExecutionException("There were errors during the build."); } }