Repository: calcite Updated Branches: refs/heads/master de7759112 -> a0b607ade
[CALCITE-553] Enable compiler profiles by default A number of profiles were conditionally enabled by default in an attempt to make incremental compilation work. The implementation ended up breaking standard maven convention such as the inclusion of the "clean" lifecycle phase with another lifecycle phase such as "package". The profiles can still be disabled on the command line by users who wish to do so (and know they haven't updated the files). Project: http://git-wip-us.apache.org/repos/asf/calcite/repo Commit: http://git-wip-us.apache.org/repos/asf/calcite/commit/a0b607ad Tree: http://git-wip-us.apache.org/repos/asf/calcite/tree/a0b607ad Diff: http://git-wip-us.apache.org/repos/asf/calcite/diff/a0b607ad Branch: refs/heads/master Commit: a0b607ade51d2fcd6937f187da2d3691004c03d5 Parents: de77591 Author: Josh Elser <[email protected]> Authored: Thu Feb 11 18:15:23 2016 -0500 Committer: Josh Elser <[email protected]> Committed: Fri Feb 12 00:20:56 2016 -0500 ---------------------------------------------------------------------- core/pom.xml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/calcite/blob/a0b607ad/core/pom.xml ---------------------------------------------------------------------- diff --git a/core/pom.xml b/core/pom.xml index 64c4e3a..3056311 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -416,8 +416,7 @@ limitations under the License. the same contents --> <id>generate-version-properties</id> <activation> - <activeByDefault>false</activeByDefault> - <file><missing>target/classes/org-apache-calcite-jdbc.properties</missing></file> + <activeByDefault>true</activeByDefault> </activation> <build> <resources> @@ -435,8 +434,7 @@ limitations under the License. --> <id>generate-parser</id> <activation> - <activeByDefault>false</activeByDefault> - <file><missing>target/generated-sources/fmpp/javacc/Parser.jj</missing></file> + <activeByDefault>true</activeByDefault> </activation> <build> <plugins>
