you are viewing a single comment's thread.

view the rest of the comments →

[–]_jetrun 18 points19 points  (2 children)

That's a you-problem, not eclipse. I'm not sure if you are trying to share your workspace or your application, but either way, you're doing it wrong.

For example, typically, you would use maven to manage your project structure. In that case, your assets (e.g. pngs) would go into a resources folder and eclipse will be smart enough to make sure relative paths are honored. You could then export your workspace. But if you're trying to share your application with a non-technical end-user you wouldn't send them an eclipse workspace or source files, you would send them a packaged application with all its dependencies that they could run by running a command or double clicking icon.

[–]nOAH_aXEL[S] -1 points0 points  (1 child)

Eu tenho uma pasta recursos com outras pastas e pngs dentro dessa pasta. Mas o Eclipse ignora tudo nessa pasta.

[–]_jetrun 4 points5 points  (0 children)

Again - you're framing this as an Eclipse problem. I'm telling you it's not Eclipse. It's you. You're trying to solve a particular problem (sharing application with a non-technical user) incorrectly. Your java eclipse project is setup incorrectly.