Bug 400862 - [CBI] Allow compiler's setting to "proceedOnError" to be user settable
Summary: [CBI] Allow compiler's setting to "proceedOnError" to be user settable
Status: NEW
Alias: None
Product: Platform
Classification: Eclipse Project
Component: Releng (show other bugs)
Version: 4.2.1   Edit
Hardware: PC Linux
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: Platform-Releng-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-14 19:10 EST by David Williams CLA
Modified: 2013-02-14 19:23 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description David Williams CLA 2013-02-14 19:10:13 EST
In fixing bug 400758, I "hard coded" the proceedOnError flag for the JDT compiler in the eclipse parent pom, as that is the main use-case for our production builds. 
            <compilerArguments>
              <inlineJSR/>
              <enableJavadoc/>
              <encoding>${project.build.sourceEncoding}</encoding>
              <proceedOnError/>
              <log>${project.build.directory}/@dot.xml</log>
            </compilerArguments>

There may be times when a user would like to override, such as doing a quick local build, and would prefer a build to end right away, at the first compile error, if any. 

This could be made user settable by using a maven profile, but would prefer not to put in too many profiles at this point to avoid complexity, but ... if there is enough need could do in the future.