Repository: tajo Updated Branches: refs/heads/master 0e4ad5635 -> 94709cbb1
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/94709cbb Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/94709cbb Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/94709cbb Branch: refs/heads/master Commit: 94709cbb155fb036b8857b27a5e6e8b9c7b04b44 Parents: 0e4ad56 Author: Hyunsik Choi <[email protected]> Authored: Thu Sep 17 06:47:12 2015 -0700 Committer: Hyunsik Choi <[email protected]> Committed: Thu Sep 17 06:49:13 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/94709cbb/.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/94709cbb/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 66c3b90..cac0233 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/94709cbb/tajo-storage/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-storage/pom.xml b/tajo-storage/pom.xml index 24dff10..cc99aff 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>
