Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Replacement Properties

Your source files can be configured with Replacement Properties, which are then replaced (using a plugin operation) with target deployment environment properties.

 

Replacement properties are defined by using following syntax within your artifacts:

  • ${{PROPERTY_NAME}} for project properties or current instance properties.
  • ${{INSTANCE:PROPERTY_NAME}} for specific instance properties.

 

For example:

Code Block

...

languagebash
WEBLOGIC_FOLDER==${{FDWLS_WEBLOGIC_HOME}} 

In this case, FDWLS_WEBLOGIC_HOME from current instance is used for replacement.

 Or

Code Block

...

language

...

bash
WEBLOGIC_FOLDER==${{ADF1:FDWLS_WEBLOGIC_HOME}}

In this case, FDWLS_WEBLOGIC_HOME from instance defined with ADF1 code is used for replacement.