<pathconvert>

-- 
Jeffrey E. Care ([EMAIL PROTECTED])
WebSphere Build SWAT Team Lead
WebSphere Build Tooling Lead (Project Mantis)
https://w3.opensource.ibm.com/projects/mantis


Abbey Sparrow <[EMAIL PROTECTED]> wrote on 03/06/2005 03:01:15 AM:

> I am currently jumping through a couple of hoops in order to get 
> relative classpaths in my manifest:
> 
>    <!-- Set Classpath -->
>    <path id="project.class.path" >
>          <fileset dir="${thirdPartyLibraries}">
>              <include name="**/*.jar"/>
>          </fileset>
>          <pathelement location="${libraries}/Apollo.jar"/>
>          <pathelement location="${libraries}/Sphinx.jar"/>
>          <pathelement location="${libraries}/JSphinx.jar"/>
>          <pathelement location="${libraries}/JHotep.jar"/>
>          <pathelement location="${libraries}/JCereal.jar"/>
>      </path>
> 
>      <!-- Make Classpath Relative -->
>      <path id="root.path">
>          <pathelement path="${antRoot}"/>
>      </path>
>      <record name="cp.txt" action="start" emacsmode="true" />
>          <echo>${toString:project.class.path}</echo>
>      <record name="cp.txt" action="stop"/>
>      <replace
>          file="cp.txt"
>          token="${toString:root.path}"
>          value=".."
>      />
>      <loadfile property="classpath" srcFile="cp.txt"/>
>       <echo>${classpath}</echo>
> 
> Is this the only way to do this, or is there some other, better method 
> I am missing?
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

Reply via email to