Hello,

Does anybody know how a .jar file (for exemple a jdbc driver) could be added to the project?

I will give an exemple.
I want to use jdbc driver that is .jar file. I can add it while creating a new Data Source. But the problem is that the path will be fixed (C:\Users\UserName\...\driver.jar). If I open this project on the other computer the path is wrong.
I want to add a jar file to the project so, that the path will be "internal"(ProjectName\lib\driver.jar). So on any computer the file will be found.

It seams that for Java projects in Eclipse one can add any jar file in the BuildPath so this jar will be inside the project and it can be used on any computer.

I've tested several variants:

1) Window >> Preferences >> Report Design >> Class Path
there I've added my driver. But I haven't understood how can I use this library

2) Choose the report, in the Property Editor choose Resources, add file there. The same: haven't understood how can I use this library

3) Select Project >> Properties >> Class Path, there I've added my driver

4) Simple add a jar file to the project folder also gives nothing