Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pde-build-dev] build.xml "refresh" target problems.


This target is meant to be used when the build.xml is executed in the IDE (right click the build.xml and run it) in order to force the content of the resource tree to be refreshed.


"Barrie Treloar" <baerrach@xxxxxxxxx>
Sent by: pde-build-dev-bounces@xxxxxxxxxxx

03/08/2007 06:32 PM

Please respond to
"Eclipse PDE Build developers list." <pde-build-dev@xxxxxxxxxxx>

To
"Eclipse PDE Build developers list." <pde-build-dev@xxxxxxxxxxx>
cc
Subject
[pde-build-dev] build.xml "refresh" target problems.





                 <target name="refresh" depends="init" if="eclipse.running"
description="Refresh this folder.">
                                 <echo message="before eclipse.convertPath"/>
                                 <eclipse.convertPath
fileSystemPath="D:/ide/pde/A_test_pde/plugins/test.pde.plugin"
property="resourcePath"/>
                                 <echo message="resourcePath = $resourcePath"/>
                                 <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>                                  
                </target>

Is this target used by anything?

Can anyone actually run this on the command line?
It fails for me with
...build.xml:161: The path
D:\ide\pde\A_test_pde\plugins\test.pde.plugin does not match any
existing project.

I want to replace the fully qualified path name with "${basedir}" since this is
    [echo] basedir = D:\ide\pde\A_test_pde\plugins\test.pde.plugin

Cheers,
Barrie
_______________________________________________
pde-build-dev mailing list
pde-build-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/pde-build-dev


Back to the top