我对ANT很陌生,可以构建一个Eclipse(氧气(项目。我正在使用以前在 RAD 环境中编写的现有构建.xml文件。
这是我的workspacePreferenceFile
;
<workspacePreferenceFile
preferenceFileName="${rad.preferences.filename}"
useEclipsePrefs="true"
overwrite="true" />
这是我的${rad.preferences.filename}
compiler.problem.unusedImport=ignore
compiler.compliance=1.8
compiler.source=1.8
这是错误
BUILD FAILED
Problem: failed to create task or type workspacePreferenceFile
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.
知道吗?谢谢!
workspacePreferenceFile
仅在 IBM RAD 中可用,在标准 Eclipse 中不可用。
Eclipse 首选项文件使用正常的 Java 属性文件格式,因此您可以使用标准的 Ant property
任务。