问题描述:
今天用eclipse导入了一个工程,总是出【build.properties does not exist】的错误。
问题原因:
在.project文件中设置了【<nature>org.eclipse.pde.PluginNature</nature>】导致了对build.properties的引用,但是build.properties 并不存在。
今天用eclipse导入了一个工程,总是出【build.properties does not exist】的错误。
问题原因:
在.project文件中设置了【<nature>org.eclipse.pde.PluginNature</nature>】导致了对build.properties的引用,但是build.properties 并不存在。
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>ValidateUAT</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
</natures>
</projectDescription>
本文介绍了在使用Eclipse导入工程时遇到的【build.propertiesdoesnotexist】错误的原因及解决方法。错误出现是因为项目文件中配置了不存在的build.properties文件。通过调整.project文件中的设置可以避免该问题。
70

被折叠的 条评论
为什么被折叠?



