You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 13 Next »

Source changes

POM

In the root pom.xml:

  • change parent/version from 2.1.1 to 2.1.2
  • change properties/syncope.version from 2.1.1 to 2.1.2

In core/pom.xml, replace

         <dependency>
          <groupId>org.apache.syncope.core</groupId>
          <artifactId>syncope-core-workflow-flowable</artifactId>
           <version>${syncope.version}</version>
         </dependency>

with

        <dependency>
          <groupId>org.apache.syncope.ext.flowable</groupId>
          <artifactId>syncope-ext-flowable-rest-cxf</artifactId>
          <version>${syncope.version}</version>
        </dependency>

In console/pom.xml, add

        <dependency>
          <groupId>org.apache.syncope.ext.flowable</groupId>
          <artifactId>syncope-ext-flowable-client-console</artifactId>
          <version>${syncope.version}</version>
        </dependency>

as first child of the <dependencies> element in the all profile; then remove

        <dependency>
          <groupId>org.flowable</groupId>
          <artifactId>flowable-ui-modeler-app</artifactId>  
          <type>war</type>
          <scope>test</scope>
        </dependency>

and the whole <plugins/> element (including children).

Files

  • In the workflow.properties file enabled with Flowable support (it could be core/src/main/resources/workflow.propertiescore/src/main/resources/all/workflow.properties or other, depending on your project setup), replace

    uwfAdapter=org.apache.syncope.core.workflow.flowable.FlowableUserWorkflowAdapter

    with

    uwfAdapter=org.apache.syncope.core.flowable.impl.FlowableUserWorkflowAdapter
  • In both console/src/main/resources/console.properties and console/src/test/resources/console.properties, remove

    flowableModelerDirectory=${flowable-modeler.directory}

    and

    page.workflow=org.apache.syncope.client.console.pages.Workflow

    then add

    topology.corePoolSize=10
    topology.maxPoolSize=20
    topology.queueCapacity=50

Internal Storage

  • No labels