You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sqoop.apache.org by ja...@apache.org on 2015/01/12 21:36:26 UTC

sqoop git commit: SQOOP-1966: Turn off maven's source distribution profile by default

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 <ja...@apache.org>
Authored: Mon Jan 12 12:35:36 2015 -0800
Committer: Jarek Jarcec Cecho <ja...@apache.org>
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>