我创建了一个带有空目标定义的新Eclipse插件,其中我添加了一个本地eclipse安装作为存储库,因为我想要一个轻量级的产品。
目标文件的内容是:
<target name="clean_target" sequenceNumber="16">
<locations>
<location path="D:\eclipse" type="Profile"/>
</locations>
</target>
当我尝试使用Maven Tycho
构建产品时,我收到以下警告:
[WARNING] Target location type 'Profile' is not supported
。
这是什么意思,我该如何解决?