Repository: sqoop Updated Branches: refs/heads/sqoop2 bca7671f8 -> ec30437f5
SQOOP-1966: Turn off maven's source distribution profile by default (Qian Xu via Jarek Jarcec Cecho) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/ec30437f Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/ec30437f Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/ec30437f Branch: refs/heads/sqoop2 Commit: ec30437f50c1a465a2c300d48f0ba5a573a0e8ba Parents: bca7671 Author: Jarek Jarcec Cecho <[email protected]> Authored: Mon Jan 12 12:35:36 2015 -0800 Committer: Jarek Jarcec Cecho <[email protected]> Committed: Mon Jan 12 12:35:36 2015 -0800 ---------------------------------------------------------------------- dist/pom.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/ec30437f/dist/pom.xml ---------------------------------------------------------------------- diff --git a/dist/pom.xml b/dist/pom.xml index a5968a9..1c303a9 100644 --- a/dist/pom.xml +++ b/dist/pom.xml @@ -49,11 +49,11 @@ limitations under the License. </dependencies> <profiles> - <!-- Build source distribution (activated by default) --> + <!-- Build source distribution (activated by -Psource) --> <profile> <id>source</id> <activation> - <activeByDefault>true</activeByDefault> + <activeByDefault>false</activeByDefault> </activation> <build> <plugins> @@ -111,6 +111,9 @@ limitations under the License. <!-- Build binary distribution (activated by -Pbinary) --> <profile> <id>binary</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> <build> <plugins> <plugin>
