HDFS-2294. Download of commons-daemon TAR should not be under target (tucu)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1179894 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e4db38bdbe
commit
9291197de4
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,3 +7,4 @@
|
|||||||
.project
|
.project
|
||||||
.settings
|
.settings
|
||||||
target
|
target
|
||||||
|
hadoop-hdfs-project/hadoop-hdfs/downloads
|
||||||
|
@ -63,6 +63,8 @@ Trunk (unreleased changes)
|
|||||||
|
|
||||||
HDFS-2181 Separate HDFS Client wire protocol data types (sanjay)
|
HDFS-2181 Separate HDFS Client wire protocol data types (sanjay)
|
||||||
|
|
||||||
|
HDFS-2294. Download of commons-daemon TAR should not be under target (tucu)
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
HDFS-2287. TestParallelRead has a small off-by-one bug. (todd)
|
HDFS-2287. TestParallelRead has a small off-by-one bug. (todd)
|
||||||
|
|
||||||
|
@ -330,15 +330,14 @@
|
|||||||
<property name="commons.daemon.tar.name"
|
<property name="commons.daemon.tar.name"
|
||||||
value="commons-daemon-${commons-daemon.version}-bin-${commons.daemon.os.name}-${commons.daemon.os.arch}.tar.gz"/>
|
value="commons-daemon-${commons-daemon.version}-bin-${commons.daemon.os.name}-${commons.daemon.os.arch}.tar.gz"/>
|
||||||
|
|
||||||
<property name="commons.daemon.download.dir"
|
<mkdir dir="downloads"/>
|
||||||
value="${project.build.directory}/downloads/commons-daemon"/>
|
|
||||||
<delete dir="${commons.daemon.download.dir}"/>
|
|
||||||
<mkdir dir="${commons.daemon.download.dir}"/>
|
|
||||||
<get src="http://archive.apache.org/dist/commons/daemon/binaries/${commons-daemon.version}/${commons.daemon.os.name}/${commons.daemon.tar.name}"
|
<get src="http://archive.apache.org/dist/commons/daemon/binaries/${commons-daemon.version}/${commons.daemon.os.name}/${commons.daemon.tar.name}"
|
||||||
dest="${commons.daemon.download.dir}/${commons.daemon.tar.name}" verbose="true" skipexisting="true"/>
|
dest="downloads/${commons.daemon.tar.name}" verbose="true" skipexisting="true"/>
|
||||||
<untar compression="gzip" src="${commons.daemon.download.dir}/${commons.daemon.tar.name}"
|
<delete dir="${project.build.directory}/commons-daemon.staging"/>
|
||||||
dest="${commons.daemon.download.dir}"/>
|
<mkdir dir="${project.build.directory}/commons-daemon.staging"/>
|
||||||
<copy file="${commons.daemon.download.dir}/jsvc"
|
<untar compression="gzip" src="${basedir}/downloads/${commons.daemon.tar.name}"
|
||||||
|
dest="${project.build.directory}/commons-daemon.staging"/>
|
||||||
|
<copy file="${project.build.directory}/commons-daemon.staging/jsvc"
|
||||||
todir="${project.build.directory}/${project.artifactId}-${project.version}/libexec"
|
todir="${project.build.directory}/${project.artifactId}-${project.version}/libexec"
|
||||||
verbose="true"/>
|
verbose="true"/>
|
||||||
<chmod perm="ugo+x" type="file">
|
<chmod perm="ugo+x" type="file">
|
||||||
|
Loading…
Reference in New Issue
Block a user