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/makeurl.html | 234 +++++++++++++++++++++ 1 file changed, 234 insertions(+) create mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/makeurl.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/makeurl.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/makeurl.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/makeurl.html new file mode 100644 index 00000000..b20f94a1 --- /dev/null +++ b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/makeurl.html @@ -0,0 +1,234 @@ + + + + + + Makeurl Task + + + + + + + + + + + + + + + + + +
+ + + +
+ Makeurl Task + + + + Apache Ant + +
+
+ + + + + + + + + + +
 
+ + + Description +
+This task takes one or more filenames and turns them into URLs, which it then assigns to a property. +Useful when setting up RMI or JNLP codebases, for example. +Nested filesets are supported; if present, these are turned into the URLs with the supplied separator between them (default: space). +

+

Examples:

+
+<makeurl file="${user.home}/.m2/repository" property="m2.repository.url"/>
+
+Sets the property m2.repository.url to the file: URL of the local Maven2 repository. +
+<makeurl property="codebase"><fileset dir="lib includes="*.jar"/></makeurl>
+
+Set the property codebase to the three URLs of the files provided as nested elements. +
+ + + + + + + + + + + + +
 
+ + + Parameters +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Attribute + + Description + + Type + + Requirement +
+ file + + name of a file to be converted into a URL + + File + + optional, if a nested fileset or path is supplied +
+ property + + name of a property to set to the URL + + String + + required +
+ separator + + separator for the multi-URL option + + String + + optional +
+ validate + + validate that every named file exists + + boolean + + optional; default: true +
+
+ + + + + + + + + + +
 
+ + + Parameters as nested elements +
+ + + + + +
 
+ + fileset (org.apache.tools.ant.types.FileSet) +
+ A fileset of JAR files to include in the URL list, each separated by the separator. + + + +
+ + + + + + +
 
+ + path (org.apache.tools.ant.types.Path) +
+ Add a path to the URL. All elements in the path will be converted to individual URL entries. + + + +
+ + +
+ + + +
+ + + -- cgit 1.2.3-korg