The error "build.properties does not exist" in MyEclipse

I am using MyEclipse 8.6.1 to develop my applications. I get errors "build.properties does not exist" in any project, but the workspace is compiled and works without problems, only the error image (red image) is shown in the root of the project. I am looking in frume to solve this problem, in some cases I say that "there is a reason for this problem either in the .project file", but I do not see any problems with this file.

+4
source share
4 answers

I fixed it as follows:

  • Project / Properties / Builders uncheck all builders

  • Project / Properties / Builders review all builders

+7
source

This happens sometimes if I play with files in svn, and I accidentally change or delete .project , .classpath , .buildpath or .anything that outshine and use different IDEs based on it. The solution I'm using is to create a new project with similar settings to find the hidden files in question, starting from the point, and copy them from an empty project to the current one. Be sure to make a backup, and also open the point files and change any lines specific to your project.

For example, here is my .project file:

 <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>MyProjectName</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> 

Given that you are using eclipse for Java, you only need to modify MyProjectName and put the file in the root of your project.

+1
source

Uncheck the box under Project-> Properties-> Plug-In Development-> Runtime Classpath

+1
source

a simple project update worked for me

0
source

Source: https://habr.com/ru/post/1397165/


All Articles