Changing the src artifact name to remove the hadoop version because it is not version specific.
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/654ef107 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/654ef107 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/654ef107 Branch: refs/heads/console-v2 Commit: 654ef107c85bfefc70917f261ce259fc7c92e9da Parents: 6101aac Author: Aaron McCurry <[email protected]> Authored: Mon May 5 20:22:56 2014 -0400 Committer: Aaron McCurry <[email protected]> Committed: Mon May 5 20:22:56 2014 -0400 ---------------------------------------------------------------------- distribution/pom.xml | 16 ++++++++++++++-- distribution/src/assemble/src.xml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/654ef107/distribution/pom.xml ---------------------------------------------------------------------- diff --git a/distribution/pom.xml b/distribution/pom.xml index 284d6b5..d631670 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -47,18 +47,30 @@ under the License. <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> - <id>distro-assembly</id> + <id>distro-assembly-src</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> + <finalName>apache-blur-${project.parent.version}</finalName> <descriptors> - <descriptor>src/assemble/bin.xml</descriptor> <descriptor>src/assemble/src.xml</descriptor> </descriptors> </configuration> </execution> + <execution> + <id>distro-assembly-bin</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <descriptors> + <descriptor>src/assemble/bin.xml</descriptor> + </descriptors> + </configuration> + </execution> </executions> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/654ef107/distribution/src/assemble/src.xml ---------------------------------------------------------------------- diff --git a/distribution/src/assemble/src.xml b/distribution/src/assemble/src.xml index c6067fe..e335fdc 100644 --- a/distribution/src/assemble/src.xml +++ b/distribution/src/assemble/src.xml @@ -27,7 +27,7 @@ under the License. <fileSets> <fileSet> <directory>${project.parent.basedir}</directory> - <outputDirectory>apache-blur-${project.version}-src</outputDirectory> + <outputDirectory>apache-blur-${project.parent.version}-src</outputDirectory> <excludes> <exclude>**/.empty</exclude> <exclude>**/target/**</exclude>
