diff --git a/docs/manual/CoreTasks/makeurl.html b/docs/manual/CoreTasks/makeurl.html index 1fc28ffc3..bef63e28d 100644 --- a/docs/manual/CoreTasks/makeurl.html +++ b/docs/manual/CoreTasks/makeurl.html @@ -34,7 +34,6 @@
- This task takes one or more filenames and turns them into URLs, which it then assigns to a property. Useful when setting up RMI codebases. Nested filesets are supported; if present, these are turned into the url with the given separator between them (default = " ").Example
<makeurl file="${user.home}/.m2/repository" property="m2.repository.url" />Sets the propertym2.repository.url
to the file: URL of the local Maven2 repository.<makeurl property="codebase"> <fileset dir="lib includes="*.jar"/> </makeurl>Set the propertycodebase
to the three URLs of the files provided as nested elements. +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 propertym2.repository.url
to the file: URL of the local Maven2 repository. ++<makeurl property="codebase"><fileset dir="lib includes="*.jar"/></makeurl> ++Set the propertycodebase
to the three URLs of the files provided as nested elements.
- a fileset of jar files to include in the URL, each separated by the separator + A fileset of JAR files to include in the URL list, each separated by the separator. @@ -192,7 +212,7 @@ 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 + Add a path to the URL. All elements in the path will be converted to individual URL entries.