Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Corrected links that should have been relative instead of absolute.

...

The build.xml has support for deploying to your Tomcat 6.0 installation. All you need to do is set the server.home property in build.properties to point to your tomcat installation. Then you can run "ant deploy-warear" to deploy to tomcat. You will need to restart tomcat at least the first time. Reloading the context after that will work.

...

uPortal places libraries in CATALINA_BASE/shared/lib The default Tomcat 6.0 download does not enable libraries to be loaded from this directory. To resolve this you must edit CATALINA_BASE/conf/catalina.properties and change the line that begins "shared.loader=" to "the following:

shared.loader=${catalina.base}/shared/classes,${catalina.base}/shared/lib/*.jar

...

Don't forget to restart tomcat after applying this change.

...