2

我尝试刷新 eclipse 作为Powershell-script. 我位于“.../My_Project”,.xml 文件位于“ .../My_Project/base/cmd”中。因此最后一行是

C:\app\eclipse_juno_SR2\eclipse -nosplash -application org.eclipse.ant.core.antRunner -f .\base\cmd\refresh.xml -consolelog

我使用的脚本是

<?xml version="1.0" encoding="UTF-8"?>
<project name="refresh_project" default="refresh" basedir="./../..">
<target name="refresh">
    <eclipse.refreshLocal resource="/My_Project" depth="infinite"/>
</target>
</project>

当我在 Eclipse 中使用它时,构建工作但使用脚本时它只显示此消息:

org.eclipse.m2e.logback.configuration: The org.eclipse.m2e.logback.configuration
 bundle was activated before the state location was initialized.  Will retry aft
er the state location is initialized.
org.eclipse.m2e.logback.configuration: Logback config file: C:\Users\Dennis.Hert
el\workspace\.metadata\.plugins\org.eclipse.m2e.logback.configuration\logback.1.
3.0.20130129-0926.xml
org.eclipse.m2e.logback.configuration: Initializing logback
org.eclipse.m2e.logback.configuration: eclipse.consoleLog=true
Buildfile: .\base\cmd\refresh.xml

refresh:
[eclipse.refreshLocal] Warning: project /My_Project does not exist and cannot be
refreshed.
BUILD SUCCESSFUL

我试过了

  1. 几个项目
  2. eclipse.convertPath fileSystemPath="/My_Project"
  3. property="Test" fileSystemPath="/${workspace_loc}/My_Project"
  4. fileSystemPath="/${workspace_loc:My_Project}"
  5. fileSystemPath="/path/to/my/project/My_Project"
  6. 使用其他环境变量并${Test}用作资源

但它要么不扩展变量(工作区),要么抛出错误,因为路径无效(它不是)或没有任何变化

如果这是一个愚蠢的问题,请原谅,我已经研究了几个小时,我以前从未使用过 ant,希望我没有我想的那么愚蠢

4

1 回答 1

0

我的猜测是,您运行 ant 脚本的 Eclipse 实例所在的工作区与项目所在的工作区不同。要解决此问题,请确保在启动 ant 脚本时指定 Eclipse 工作区位置。您可以使用osgi.instance.area系统属性从启动脚本的命令中设置工作区位置

-Dosgi.instance.area=/path/to/my/workspace

这是命令行选项的完整描述。

于 2013-04-24T21:46:52.477 回答