Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Building and Deploying Instructions for:

...

Step 1: Configure the build.properties file

 The uPortal build requires a build.properties file describing the deployment environment to be available in the root of the uPortal project.

     1. Go to your uPortal source directory and create the build.properties file by copying the build.properties.sample file to build.properties

...

  • In the filters folder, locate the default local.properties file and configure the Database Connection Settings, uPortal Server Configuration Properties,  CAS Server Configuration, Logging information, and LDAP settings. Replace localhost:8080 with your server name.

uPortal provides an optional mechanism to override these settings with a file that is completely outside uPortal source. This approach allows systems administrators to change these settings without rebuilding.  It also provides an easy way for adopters to keep sensitive information outside of their Source Code Management system (See Properties Files and Properties Overrides).

...

Code Block
titleBGColor#F0F0F0
borderStyledashed
titleEnabling shared libraries in CATALINA_BASE/conf/catalina.propertiesborderStyledashed
<!-- In older versions prior to uPortal 4.0.10 --> 
shared.loader=${catalina.base}/shared/classes,${catalina.base}/shared/lib/*.jar
 
<!-- In uPortal 4.0.10+, shared/classes is NOT necessary: ->
shared.loader=${catalina.base}/shared/lib/*.jar

...