Packaging cleanups and making binary artifact name consistent with source artifact
Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/a8bfbf1a Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/a8bfbf1a Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/a8bfbf1a Branch: refs/heads/master Commit: a8bfbf1a2d40b12e715912481d081b61ed5d8321 Parents: fb9b6e0 Author: Jacques Nadeau <[email protected]> Authored: Thu Sep 5 20:47:57 2013 -0700 Committer: Jacques Nadeau <[email protected]> Committed: Thu Sep 5 20:47:57 2013 -0700 ---------------------------------------------------------------------- distribution/pom.xml | 1 + distribution/src/assemble/bin.xml | 10 +--------- 2 files changed, 2 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/a8bfbf1a/distribution/pom.xml ---------------------------------------------------------------------- diff --git a/distribution/pom.xml b/distribution/pom.xml index a2123ae..dd90547 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -69,6 +69,7 @@ <descriptor>src/assemble/bin.xml</descriptor> </descriptors> <finalName>apache-drill-${project.version}</finalName> + <tarLongFileMode>gnu</tarLongFileMode> </configuration> </execution> </executions> http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/a8bfbf1a/distribution/src/assemble/bin.xml ---------------------------------------------------------------------- diff --git a/distribution/src/assemble/bin.xml b/distribution/src/assemble/bin.xml index 8997a89..cb8bb71 100644 --- a/distribution/src/assemble/bin.xml +++ b/distribution/src/assemble/bin.xml @@ -1,10 +1,9 @@ <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> - <id>bin</id> + <id>binary-release</id> <formats> <format>tar.gz</format> - <format>dir</format> </formats> <includeBaseDirectory>true</includeBaseDirectory> <moduleSets> @@ -13,13 +12,6 @@ <!-- Enable access to all projects in the current multimodule build! --> <useAllReactorProjects>true</useAllReactorProjects> - <!-- Now, select which projects to include in this module-set. --> - <includes> - <include>org.apache.drill:planner:jar</include> - <include>org.apache.drill:sqlparser:jar</include> - <include>org.apache.drill.exec:netty-bufferl</include> - <include>org.apache.drill.exec:ref</include> - </includes> <binaries> <outputDirectory>jars</outputDirectory> <unpack>false</unpack>
