.Project File in Eclipse
This is perhaps more a reference for me than for anyone else reading my blog
But I think it might come in quite useful someday.
Here’s a description of the project file of an eclipse project:
and here is my code on the php project:
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>ProjectName</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.dltk.core.scriptbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.php.core.PHPNature</nature>
</natures>
</projectDescription>
2 Responses to .Project File in Eclipse
Leave a Reply Cancel reply
Newsletter
If you want to be up to date on the important things, related to the topics I talk about, events and the book I'm writing, please subscribe.
Upcoming Events
- March 8, 2012 6:00 pm'Scrum in practice 2012' Training Session n°3
- March 12, 2012Belgium Testing Days 2012
- April 19, 2012 6:00 pm'Scrum in practice 2012' Training Session n°4
Link to Calendar





Since the latest eclipse versions you can simply click right on your project > Configure
And choose one of the many configuration options:
- Add Javascript Support
- Add PHP Support
…
This is also probably the safest way, because the syntax could change in the future.
grtz
THx for the reply!
Cool, works like a charm, are there any other nice features that where added to the latest version that we should know of?