我尝试刷新 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
我试过了
- 几个项目
eclipse.convertPath fileSystemPath="/My_Project"
property="Test" fileSystemPath="/${workspace_loc}/My_Project"
fileSystemPath="/${workspace_loc:My_Project}"
fileSystemPath="/path/to/my/project/My_Project"
- 使用其他环境变量并
${Test}
用作资源
但它要么不扩展变量(工作区),要么抛出错误,因为路径无效(它不是)或没有任何变化
如果这是一个愚蠢的问题,请原谅,我已经研究了几个小时,我以前从未使用过 ant,希望我没有我想的那么愚蠢