I am running MyEclipse 8.6.1 in a team (SVN) environment and using the integrated sandbox Tomcat for development or JSPs and servlets.
When implementing connection pooling in Tomcat (JNDI/JDBC), my Oracle driver JAR (ojdbc14.jar) is not found by the integrated Tomcat unless I specifically add it to the classpath (Window, Preferences, MyEclipse, Servers, Integrated Sandbox, MyEclipse Tomcat 6, Paths, “Append to classpath”).
This path is an absolute path and does not get saved in my project and therefore can’t be checked in to SVN for others to check out.
It is extremely inconvenient for a team member to checkout the code and then have to do a bunch of extra steps to be able to run the project. A checked out project should be self-contained.
Note: For deployment to a standalone Tomcat server I can copy the JAR file to the <tomcat_home>/lib folder and the app runs fine.
How can I eliminate the extra configuration steps upon project checkout?
JM.