How do I add a directory to the eclipse classpath?

匆匆过客 提交于 2019-11-27 15:08:11

In Eclipse, there is a build classpath and a runtime classpath. There is also the build output location, which by default is bin. You don't want to add resources directly to bin because Eclipse can delete its contents when doing a clean build. What you need to do is add a resources folder in your project to contain any non-Java files that you want included in your build output.

To include the contents of this resources folder in the build output (bin), right-click the project and select Properties. In the Project Properties, select the Java Build Path section, then the Source tab.

Use the Add Folder... button to select the resources folder from your project, then OK to save the changes. At that point, Eclipse will automatically copy everything from resources into bin when it builds.

user3324410

This is for a maven project:

  1. Right click on project
  2. click on run configurations
  3. click on the classpath tab (Oxygen Eclipse)
  4. click on user entries
  5. click on Advanced
  6. first radio selection default should be 'Add Folders'
  7. click OK

Follow these steps to get this issue fixed:

  1. Right click on Project
  2. Click on Run As and select Run Configurations
  3. Click on the classpath tab (Oxygen Eclipse)
  4. Click on user entries
  5. Click on Add External JARs.. and choose the downloaded JAR file
  6. Click Apply and run your project...

Right Click on the project-name in Package Explorer, select Properties, select Java Build Path on the left, select Source tab on the right, click on Add Folder, browse through the project's directories to select the resources folder or whatever you need to add to the eclipse classpath, hit OK, again hit OK. Done.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!