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

Compare with Current View Page History

« Previous Version 3 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.

  • No labels