From 753a6c60f47f3ac4f270005b65e9d6481de8eb68 Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:00:02 -0700 Subject: Adding maven and ant source trees Change-Id: I0a39b9add833a31b9c3f98d193983ae2f3a5a445 Signed-off-by: Ashlee Young --- .../ant/apache-ant-1.9.6/manual/Tasks/echoxml.html | 74 ++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/echoxml.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/echoxml.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/echoxml.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/echoxml.html new file mode 100644 index 00000000..74cbf7fb --- /dev/null +++ b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/echoxml.html @@ -0,0 +1,74 @@ + + + + + + +EchoXML Task + + + + +

EchoXML

+

Description

+

Echo nested XML to the console or a file. Since Apache Ant 1.7

+

Parameters

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
fileThe file to receive the XML. If omitted nested + XML will be echoed to the log.No
appendWhether to append file, if specified.No
namespacePolicySets the namespace policy as defined + by org.apache.tools.ant.util.DOMElementWriter.XmlNamespacePolicy. + Valid values are ignore, elementsOnly, or all. + Since Apache Ant 1.8 + No, default ignore
+

Parameters specified as nested elements

+Nested XML content is required. + +

Examples

+
<echoxml file="subbuild.xml">
+  <project default="foo">
+    <target name="foo">
+      <echo>foo</echo>
+    </target>
+  </project>
+</echoxml>
+
+

Creates an Ant buildfile, subbuild.xml.

+ + + + -- cgit 1.2.3-korg