You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by hy...@apache.org on 2015/09/17 15:48:18 UTC

tajo git commit: Add profile 'storage-pgsql' to include tajo-storage-pgsql module.

Repository: tajo
Updated Branches:
  refs/heads/branch-0.11.0 332da7e1f -> 6a100de26


Add profile 'storage-pgsql' to include tajo-storage-pgsql module.


Project: http://git-wip-us.apache.org/repos/asf/tajo/repo
Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/6a100de2
Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/6a100de2
Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/6a100de2

Branch: refs/heads/branch-0.11.0
Commit: 6a100de26cafdd4d250672dd5e1b9057be79d30a
Parents: 332da7e
Author: Hyunsik Choi <hy...@apache.org>
Authored: Thu Sep 17 06:47:12 2015 -0700
Committer: Hyunsik Choi <hy...@apache.org>
Committed: Thu Sep 17 06:48:09 2015 -0700

----------------------------------------------------------------------
 .travis.yml          |  2 +-
 pom.xml              |  4 ++++
 tajo-storage/pom.xml | 16 +++++++++++++++-
 3 files changed, 20 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tajo/blob/6a100de2/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 671a31f..b4b1790 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -37,4 +37,4 @@ before_install: ulimit -t 514029 -u 2048 -n 3000
 install: ./dev-support/travis-install-dependencies.sh
 
 script: 
-  mvn clean install -q -ff -Dsurefire.useFile=false -Pparallel-test -DLOG_LEVEL=WARN -Dmaven.fork.count=2
+  mvn clean install -q -ff -Dsurefire.useFile=false -Pparallel-test -DLOG_LEVEL=WARN -Dmaven.fork.count=2 -Pstorage-pgsql

http://git-wip-us.apache.org/repos/asf/tajo/blob/6a100de2/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index ea3f3fc..044c0cd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -366,7 +366,11 @@
       <modules>
         <module>tajo-docs</module>
       </modules>
+      <activation>
+        <activeByDefault>false</activeByDefault>
+      </activation>
     </profile>
+
     <profile>
       <id>apache-release</id>
       <activation>

http://git-wip-us.apache.org/repos/asf/tajo/blob/6a100de2/tajo-storage/pom.xml
----------------------------------------------------------------------
diff --git a/tajo-storage/pom.xml b/tajo-storage/pom.xml
index 5ee4d17..25a1a8c 100644
--- a/tajo-storage/pom.xml
+++ b/tajo-storage/pom.xml
@@ -38,7 +38,6 @@
     <module>tajo-storage-hdfs</module>
     <module>tajo-storage-hbase</module>
     <module>tajo-storage-jdbc</module>
-    <module>tajo-storage-pgsql</module>
   </modules>
 
   <build>
@@ -46,6 +45,11 @@
       <plugin>
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>tajo-storage-pgsql/**</exclude>
+          </excludes>
+        </configuration>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -89,6 +93,16 @@
         </plugins>
       </build>
     </profile>
+    <!-- User Documentation -->
+    <profile>
+      <id>storage-pgsql</id>
+      <modules>
+        <module>tajo-storage-pgsql</module>
+      </modules>
+      <activation>
+        <activeByDefault>false</activeByDefault>
+      </activation>
+    </profile>
     <profile>
       <id>dist</id>
       <activation>