Versions Compared

Key

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

...

2a. Perform steps common to all installs

  • Start logging install activity
  • Get instance (uat or prod)
  • Use Ivy to download zip containing resources necessary for the installation: install properties, configurations files, jsps, htmls, ... depending on the application type
  • Extract the zip in the module directory
  • Load install properties: since properties are immutable, loading in order of increasing scope allows specific cases to override general defaults.
    Some properties are set dynamically during the install, using Ant's token filtering mechanism. For details, see Install Tokens.
  • Use Ivy to download jars required by module (including the jar published by the module itself) directly in destination jar dir
  • Stop logging

2b. Perform install steps specific to this category
Files shared by modules in the category are collected in a shared module. That shared module, declared as an Ivy install dependency, is installed in this step.

...