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 2013/10/28 08:36:50 UTC

git commit: TAJO-281: 'mvn package -Pdist' generates duplicate Tajo jar files. (hyunsik)

Updated Branches:
  refs/heads/master 7dc8de283 -> c0d71913e


TAJO-281: 'mvn package -Pdist' generates duplicate Tajo jar files. (hyunsik)


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

Branch: refs/heads/master
Commit: c0d71913e746f2c930425837a6516cf49d8f80f7
Parents: 7dc8de2
Author: Hyunsik Choi <hy...@apache.org>
Authored: Mon Oct 28 16:36:28 2013 +0900
Committer: Hyunsik Choi <hy...@apache.org>
Committed: Mon Oct 28 16:36:28 2013 +0900

----------------------------------------------------------------------
 CHANGES.txt       | 3 +++
 tajo-core/pom.xml | 1 +
 tajo-dist/pom.xml | 2 +-
 3 files changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tajo/blob/c0d71913/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index c2a9eeb..768eed5 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -223,6 +223,9 @@ Release 0.2.0 - unreleased
 
   BUG FIXES
 
+    TAJO-281: 'mvn package -Pdist' generates duplicate Tajo jar files.
+    (hyunsik)
+
     TAJO-277: Infinite loop occurs when a table is empty. (jinho)
 
     TAJO-273: NotEval incurs NPE with boolean column. (hyunsik)

http://git-wip-us.apache.org/repos/asf/incubator-tajo/blob/c0d71913/tajo-core/pom.xml
----------------------------------------------------------------------
diff --git a/tajo-core/pom.xml b/tajo-core/pom.xml
index b7cd9f7..2a4292b 100644
--- a/tajo-core/pom.xml
+++ b/tajo-core/pom.xml
@@ -123,6 +123,7 @@
                   <goal>copy-dependencies</goal>
                 </goals>
                 <configuration>
+                  <excludeGroupIds>org.apache.tajo</excludeGroupIds>
                   <outputDirectory>${project.build.directory}/lib</outputDirectory>
                   <overWriteReleases>false</overWriteReleases>
                   <overWriteSnapshots>false</overWriteSnapshots>

http://git-wip-us.apache.org/repos/asf/incubator-tajo/blob/c0d71913/tajo-dist/pom.xml
----------------------------------------------------------------------
diff --git a/tajo-dist/pom.xml b/tajo-dist/pom.xml
index 1708ade..6d34682 100644
--- a/tajo-dist/pom.xml
+++ b/tajo-dist/pom.xml
@@ -99,7 +99,6 @@
                       run rm -rf tajo-${project.version}
                       run mkdir tajo-${project.version}
                       run cd tajo-${project.version}
-                      run mkdir share
                       run cp -r $ROOT/tajo-common/target/tajo-common-${project.version}/* .
                       run cp -r $ROOT/tajo-rpc/target/tajo-rpc-${project.version}/* .
                       run cp -r $ROOT/tajo-algebra/target/tajo-algebra-${project.version}/* .
@@ -107,6 +106,7 @@
                       run cp -r $ROOT/tajo-core/target/tajo-core-${project.version}/* .
                       run cp -r ${project.basedir}/src/main/bin .
                       run cp -r ${project.basedir}/src/main/conf .
+                      run rm -rf lib/tajo-*-${project.version}.jar
                       echo
                       echo "Tajo dist layout available at: ${project.build.directory}/tajo-${project.version}"
                       echo