简体   繁体   English

Eclipse 项目属性缺少 Classpath 选项卡

[英]Eclipse project properties missing Classpath tab

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.我正在运行 Eclipse Helios Service Release 2。当我尝试在项目属性中配置我的构建路径时,我没有 Classpath 选项卡。 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.我可以在项目根目录的 .classpath 文件中设置类路径,但是,并不是我团队中的每个人都想这样做,而且我找不到解决方案。

Plugins installed:安装的插件:


Subclipse子剪辑

PyDev PyDev

Jamaica ME CDC Tools牙买加 ME CDC 工具

Collabnet Merge Client Collabnet 合并客户端

Subclipse Integration for Mylyn 3.x Mylyn 3.x 的 Subclipse 集成

Subversion Client Adapter Subversion 客户端适配器

Subversion JavaHL Native Library Adapter Subversion JavaHL 本机库适配器

Subversion Revision Graph颠覆修订图

SVNKit Client Adapter SVNKit 客户端适配器

Sounds like your project is not a java project.听起来您的项目不是 java 项目。 Check your.project file and see if you can find the java builder检查 your.project 文件,看看是否可以找到 java 构建器

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

and the java nature和 java 性质

<natures>
    <nature>org.eclipse.jdt.core.javanature</nature>

Not sure what "Classpath tab" you are referring to, but to edit contents of.classpath file, head over to Project Properties -> Java Build Path.不确定您指的是什么“类路径选项卡”,但要编辑 .classpath 文件的内容,请转到项目属性 -> Java 构建路径。

It looks like in Helios R2 the classpath configuration is done when you set up your run configuration.看起来在 Helios R2 中,类路径配置是在您设置运行配置时完成的。 The issues I was having were fixed once I set the appropriate settings here.一旦我在这里设置了适当的设置,我遇到的问题就得到了解决。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM