Table of Contents

Search

  1. Preface
  2. Part 1: Using Process Developer
  3. Part 2: Creating and Modifying Processes
  4. Part 3: Functions, Events, Errors, and Correlation
  5. Part 4: Testing and Deployment
  6. Part 5: Process Central and Process Server (On-Premises)

Process Developer

Process Developer

Notes on Modifying a B-Unit Ant Script

Notes on Modifying a B-Unit Ant Script

Within the ant script, you can override properties in the individual B-unit files.
  • You can add a file to override the default-B-unit-engine config if needed, such as
    <config file="engine-configuration.xml" />
  • Nested element
    <engineProperties>
    accepts a file relative or absolute path to a properties file with engine
    config path=value
    pairs in the format required by java.util.Properties. The file attribute is optional and instead nested
    <engineProperty name="…" value="…"/>
    elements can be used to set engine properties. If both the file attribute and the engineProperty elements are used, the elements will override the values in the properties file if the same config path is specified twice.
  • Examples of multiple engine properties:
    • <engineProperty name="Logging" value="urn:ae:execution" />
    • <engineProperty name="CustomFunctions/MyCustomFunction" value="com.test.my.custom.Function" />

0 COMMENTS

We’d like to hear from you!