From b9421dc80af485591a9c50cc8921f912e0def11e Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:05:40 -0700 Subject: Removing sources to replace with download links instead. Change-Id: Ie28789a725051aec0d1b04dd291b7690a7898668 Signed-off-by: Ashlee Young --- .../ant/apache-ant-1.9.6/manual/Tasks/pack.html | 76 ---------------------- 1 file changed, 76 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/pack.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/pack.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/pack.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/pack.html deleted file mode 100644 index 60ae1e52..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/pack.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - -GZip/BZip2 Tasks - - - - -

GZip/BZip2

-

Description

-

Packs a resource using the GZip or BZip2 algorithm. -The output file is only generated if it doesn't exist or the source -resource is newer.

-

Parameters

- - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionRequired
srcthe file to gzip/bzip.Yes, or a nested resource collection.
destfilethe destination file to create.Exactly one of the two.
zipfilethe deprecated old name of destfile.
-

any resource or single element -resource collection

- -

The specified resource will be used as src. Since Apache Ant 1.7

- -

Examples

-
-<gzip src="test.tar" destfile="test.tar.gz"/>
-
-
-<bzip2 src="test.tar" destfile="test.tar.bz2"/>
-
-
-<gzip destfile="archive.tar.gz">
-  <url url="http://example.org/archive.tar"/>
-</gzip>
-
-

downloads http://example.org/archive.tar and compresses it -to archive.tar.gz in the project's basedir on the fly.

- - - - -- cgit 1.2.3-korg