I want to know how to add other than jar or zip files to any projects buildpath in eclipse?
views:
29answers:
2
+1
A:
Select project --> Properties --> Java Build path --> In the "Source" tab , expand your project and double click "Included" and add the files of your own , say *.xxx files..
srinannapa
2010-05-25 08:59:59
The default setting is that everything is included (Included: All, Excluded: None). So no need to set it.
Fabian Steeg
2010-05-25 10:15:57
I don't know if it the classpath is generated with mvn eclipse:eclipse and some of them are excluded !!
srinannapa
2010-05-25 11:13:58
A:
You can simply add them to an existing source folder or add a dedicated folder to the build path (Context Menu for the folder > Build Path > Use as Source Folder) containing the files.
You can also add single files the same way (Context Menu for the file > Build Path > Add to Build Path).
Fabian Steeg
2010-05-25 10:19:18