1

I am running Eclipse Helios Service Release 2. When I try to configure my build path in the project properties, I do not have a Classpath tab. Has anyone experienced this and/or know how to fix it? I can set the classpath in the .classpath file in the project root, however, not everyone on my team wants to do it this way, and I cannot find a solution.

Plugins installed:


Subclipse

PyDev

Jamaica ME CDC Tools

Collabnet Merge Client

Subclipse Integration for Mylyn 3.x

Subversion Client Adapter

Subversion JavaHL Native Library Adapter

Subversion Revision Graph

SVNKit Client Adapter

codewario
  • 19,553
  • 20
  • 90
  • 159

3 Answers3

3

Sounds like your project is not a java project. Check your .project file and see if you can find the java builder

<buildSpec>
    <buildCommand>
        <name>org.eclipse.jdt.core.javabuilder</name>
        <arguments>
        </arguments>
    </buildCommand>

and the java nature

<natures>
    <nature>org.eclipse.jdt.core.javanature</nature>
adietisheim
  • 3,434
  • 1
  • 19
  • 14
2

Not sure what "Classpath tab" you are referring to, but to edit contents of .classpath file, head over to Project Properties -> Java Build Path.

Konstantin Komissarchik
  • 28,879
  • 6
  • 61
  • 61
0

It looks like in Helios R2 the classpath configuration is done when you set up your run configuration. The issues I was having were fixed once I set the appropriate settings here.

codewario
  • 19,553
  • 20
  • 90
  • 159